summaryrefslogtreecommitdiff
path: root/main/editline/configure.in
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2012-07-25 12:21:54 +0000
committerKevin P. Fleming <kpfleming@digium.com>2012-07-25 12:21:54 +0000
commit7d4ccea736c1ce325de00c23dee28c61de47e638 (patch)
tree70bf7912bb022d6c064a75e7a49e60e9d9e61ecb /main/editline/configure.in
parent38f1081fd396e39e0c02600a5d58080880838131 (diff)
Enable usage of system-provided NetBSD editline library if available.
This patch changes the Asterisk configure script and build system to detect the presence of the NetBSD editline library (libedit) on the system. If it is found, it will be used in preference to the version included in the Asterisk source tree. (closes issue ASTERISK-18725) Reported by: Jeffrey C. Ollie Review: https://reviewboard.asterisk.org/r/1528/ Patches: 0001-Allow-linking-building-against-an-external-editline.patch uploaded by jcollie (license #5373) (heavily modified by kpfleming) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@370481 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/editline/configure.in')
-rw-r--r--main/editline/configure.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/editline/configure.in b/main/editline/configure.in
index db533343d..d8bc706b1 100644
--- a/main/editline/configure.in
+++ b/main/editline/configure.in
@@ -235,7 +235,7 @@ TCSRCS="TEST/test.c"
dnl Add files to the lists if readline compatibility is enabled.
if test "x$enable_readline" = "xyes" ; then
CCSRCS="$CCSRCS readline.c"
- IHDRS="$IHDRS readline/readline.h"
+ IHDRS="$IHDRS readline.h"
IHDR_LINKS="readline.h readline/history.h"
HDR_DIRS="$HDR_DIRS include/readline"
LIB_A_LINKS="$LIB_A_LINKS libedit.a libreadline.a"