aboutsummaryrefslogtreecommitdiffstats
path: root/main/editline/configure.in
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-02 20:14:57 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-02 20:14:57 +0000
commitb25302b53e87af89310bd57e07924fd7dff208ce (patch)
treeac39a2f2f28db215b3ad251b42f9b1a981f006fd /main/editline/configure.in
parentb470d2950631d1928e1740fb164ac7780ac83b43 (diff)
Remove several silly warnings in editline. One about a broken preprocessor directive, and another about strlcpy/strlcat.
(closes issue #14264) Reported by: dimas git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@179395 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'main/editline/configure.in')
-rw-r--r--main/editline/configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/main/editline/configure.in b/main/editline/configure.in
index c1f87b842..7254cee14 100644
--- a/main/editline/configure.in
+++ b/main/editline/configure.in
@@ -101,6 +101,8 @@ AC_CHECK_FUNCS(strlcpy, , CCSRCS="$CCSRCS np/strlcpy.c")
AC_CHECK_FUNCS(fgetln, , CCSRCS="$CCSRCS np/fgetln.c")
AC_CHECK_FUNCS(strvis, , CCSRCS="$CCSRCS np/vis.c")
AC_CHECK_FUNCS(strunvis, , CCSRCS="$CCSRCS np/unvis.c")
+AC_CHECK_FUNCS(strlcpy, , CCSRCS="$CCSRCS np/strlcpy.c")
+AC_CHECK_FUNCS(strlcat, , CCSRCS="$CCSRCS np/strlcat.c")
AC_EGREP_CPP(yes,
[#include <sys/cdefs.h>