inet_ntop, inet_pton: Fix link error.
authorSimon Josefsson <simon@josefsson.org>
Thu, 5 Nov 2009 13:42:03 +0000 (14:42 +0100)
committerSimon Josefsson <simon@josefsson.org>
Thu, 5 Nov 2009 13:42:03 +0000 (14:42 +0100)
ChangeLog
m4/inet_ntop.m4
m4/inet_pton.m4

index 36c74dd..3c733a5 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
 2009-11-05  Simon Josefsson  <simon@josefsson.org>
 
+       Fix link error.
+       * m4/inet_ntop.m4 (gl_INET_NTOP): Fix test of AC_SEARCH_LIBS result.
+       * m4/inet_pton.m4 (gl_INET_PTON): Likewise.
+
+2009-11-05  Simon Josefsson  <simon@josefsson.org>
+
        * tests/test-func.c: Also test value of __func__.
 
 2009-11-05  Simon Josefsson  <simon@josefsson.org>
index e3c6c8b..2a8ff20 100644 (file)
@@ -18,7 +18,8 @@ AC_DEFUN([gl_INET_NTOP],
     [AC_REPLACE_FUNCS([inet_ntop])])
   LIBS=$gl_save_LIBS
   INET_NTOP_LIB=
-  if test "$ac_cv_search_inet_ntop" != "none required"; then
+  if test "$ac_cv_search_inet_ntop" != "no" &&
+     test "$ac_cv_search_inet_ntop" != "none required"; then
     INET_NTOP_LIB="$ac_cv_search_inet_ntop"
   fi
   AC_SUBST([INET_NTOP_LIB])
index b266257..e890b9b 100644 (file)
@@ -18,7 +18,8 @@ AC_DEFUN([gl_INET_PTON],
     [AC_REPLACE_FUNCS([inet_pton])])
   LIBS=$gl_save_LIBS
   INET_PTON_LIB=
-  if test "$ac_cv_search_inet_pton" != "none required"; then
+  if test "$ac_cv_search_inet_pton" != "no" &&
+     test "$ac_cv_search_inet_pton" != "none required"; then
     INET_PTON_LIB="$ac_cv_search_inet_pton"
   fi
   AC_SUBST([INET_PTON_LIB])