diff options
author | Kurt Jaeger <pi@FreeBSD.org> | 2015-01-11 14:07:03 +0000 |
---|---|---|
committer | Kurt Jaeger <pi@FreeBSD.org> | 2015-01-11 14:07:03 +0000 |
commit | 181100d6bb222932bac3fc015886c80b7eb1e4a0 (patch) | |
tree | 1d87bdaa2a0c43e7a53f4b176d4f7e3234235851 | |
parent | Fix build when OpenSSL doesn't support SSL2/SSL3 (diff) |
net/kamailio: fix build on HEAD
by adding files/patch-utils__sercmd__Makefile
-rw-r--r-- | net/kamailio/files/patch-utils__sercmd__Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/net/kamailio/files/patch-utils__sercmd__Makefile b/net/kamailio/files/patch-utils__sercmd__Makefile new file mode 100644 index 000000000000..050ccdcfe326 --- /dev/null +++ b/net/kamailio/files/patch-utils__sercmd__Makefile @@ -0,0 +1,22 @@ +--- utils/sercmd/Makefile.orig 2015-01-11 14:54:24.246707463 +0100 ++++ utils/sercmd/Makefile 2015-01-11 14:56:12.692702813 +0100 +@@ -12,7 +12,7 @@ + NAME=sercmd + endif + +-readline_locations= /usr/include/readline/readline.h \ ++readline_locations= /usr/local/include/readline/readline.h \ + $(LOCALBASE)/include/readline/readline.h + + use_readline ?= +@@ -71,8 +71,8 @@ + endif + + ifeq ($(use_readline),1) +- DEFS+=-DUSE_READLINE +- LIBS+=-lreadline -lncurses ++ DEFS+=-DUSE_READLINE -I${LOCALBASE}/include ++ LIBS+=-L${LOCALBASE}/lib -lreadline -lncurses + endif + + |