From c26fb30f2065408dabdaf685801ca4ff9b5affbd Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sun, 3 Oct 2004 13:07:59 +0000 Subject: [PATCH] Fix netbsd paths (bug #2560) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3891 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 10483c3553..652afb37ab 100755 --- a/Makefile +++ b/Makefile @@ -146,7 +146,7 @@ endif # FreeBSD ifeq (${OSARCH},NetBSD) CFLAGS+=-pthread -INCLUDE+=-I/usr/local/include +INCLUDE+=-I/usr/local/include -I/usr/pkg/include endif ifeq (${OSARCH},OpenBSD) @@ -197,7 +197,7 @@ ifeq (${OSARCH},FreeBSD) LIBS+=-lcrypto endif ifeq (${OSARCH},NetBSD) -LIBS+=-lpthread -lcrypto -lm -L/usr/local/lib -lncurses +LIBS+=-lpthread -lcrypto -lm -L/usr/local/lib -L/usr/pkg/lib -lncurses endif ifeq (${OSARCH},OpenBSD) LIBS=-lcrypto -lpthread -lm -lncurses