]> Pileus Git - ~andy/fetchmail/commitdiff
Fix old_LIBS name when checking for -lresolv, to avoid losing former $LIBS
authorMatthias Andree <matthias.andree@gmx.de>
Sat, 1 Apr 2006 23:24:17 +0000 (23:24 -0000)
committerMatthias Andree <matthias.andree@gmx.de>
Sat, 1 Apr 2006 23:24:17 +0000 (23:24 -0000)
contents. Fixes compile failures on Solaris. (Matthias Andree)
Restore $LIBS when res_search has not been found. (Miloslav Trmac)

svn path=/branches/BRANCH_6-3/; revision=4769

configure.ac

index 72ff3df52b1cab90a231fe33ba4c15df6d426520..5fb79935ccf80a941d80d60404e82e1c39f33c54 100644 (file)
@@ -147,7 +147,7 @@ AC_CHECK_DECLS(strerror)
 # and breaks gethostbyname(2).  It's better to use the bind stuff in the C
 # library.  So don't add -lresolv to the link list unless it's necessary
 # (It will be necessary when using GNU libc6).
-old_libs=$LIBS
+old_LIBS="$LIBS"
 for lib in '' -lresolv; do
     if test -z "$lib"; then
        AC_MSG_CHECKING([for res_search in libc])
@@ -170,8 +170,9 @@ extern int res_search();
 ]], [[res_search(0, 0, 0, 0, 0);]])],
     [AC_MSG_RESULT([found])
      AC_DEFINE(HAVE_RES_SEARCH, [1],
-              [Define to 1 if you have the `res_search' function.])
+              [Define to 1 if you have the 'res_search' function.])
      break], [AC_MSG_RESULT([not found])])
+     LIBS=$old_LIBS
 done
 
 dnl Check for libcrypt -- it may live in libc or libcrypt, as on IRIX