aboutsummaryrefslogtreecommitdiffstats
path: root/main/editline/configure.in
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-02 20:17:55 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-03-02 20:17:55 +0000
commit9bcf589b0bca8929981e421a408786a9c40adcd8 (patch)
tree91917b4c6fadfb29f34800a198a37cff399b1f79 /main/editline/configure.in
parent6663041f625ad89a4393bb74130c237f4d7d3c24 (diff)
Merged revisions 179396 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r179396 | qwell | 2009-03-02 14:16:51 -0600 (Mon, 02 Mar 2009) | 9 lines Merged revisions 179395 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r179395 | qwell | 2009-03-02 14:14:57 -0600 (Mon, 02 Mar 2009) | 1 line 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.6.0@179402 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 e7be9b381..a83eb8366 100644
--- a/main/editline/configure.in
+++ b/main/editline/configure.in
@@ -99,6 +99,8 @@ AC_CHECK_FUNCS(issetugid)
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>