changeset 12241:81468eb78706

inet_ntop, inet_pton: Fix link error.
author Simon Josefsson <simon@josefsson.org>
date Thu, 05 Nov 2009 14:42:03 +0100
parents 04732481adba
children b966514efbf6
files ChangeLog m4/inet_ntop.m4 m4/inet_pton.m4
diffstat 3 files changed, 10 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+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__.
--- a/m4/inet_ntop.m4
+++ b/m4/inet_ntop.m4
@@ -18,7 +18,8 @@
     [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])
--- a/m4/inet_pton.m4
+++ b/m4/inet_pton.m4
@@ -18,7 +18,8 @@
     [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])