]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
1999-08-26 Ben Elliston <bje@cygnus.com>
authorBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Wed, 25 Aug 1999 14:31:53 +0000 (14:31 +0000)
committerBen Elliston <bje+keyword+gnu.7caf74@air.net.au>
Wed, 25 Aug 1999 14:31:53 +0000 (14:31 +0000)
* autoconf.texi (Changed Results): Correct an error in one of the
examples. Fix for autoconf/38.

ChangeLog
autoconf.texi
doc/autoconf.texi

index 76d6d419708aa6cf502b8c35b5a8d26ea9dbddf8..f1f0207daae8d5c6eae6cff1fce3bb5dc444bbc1 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+1999-08-26  Ben Elliston  <bje@cygnus.com>
+
+       * autoconf.texi (Changed Results): Correct an error in one of the
+       examples. Fix for autoconf/38.
+
 1999-08-25  Ben Elliston  <bje@cygnus.com>
 
        * autoconf.texi (Cache Variable Names): Be more explicit about the
index be7709da2aa52c48440c29ad14c766b9a704ccc9..21d4c4e3febe885f4df659bc7220361e4fc5fe33 100644 (file)
@@ -5216,7 +5216,7 @@ if test $ac_cv_func_syslog = no; then
   # syslog is not in the default libraries.  See if it's in some other.
   for lib in bsd socket inet; do
     AC_CHECK_LIB($lib, syslog, [AC_DEFINE(HAVE_SYSLOG)
-      LIBS="$LIBS $lib"; break])
+      LIBS="$LIBS -l$lib"; break])
   done
 fi
 @end example
index be7709da2aa52c48440c29ad14c766b9a704ccc9..21d4c4e3febe885f4df659bc7220361e4fc5fe33 100644 (file)
@@ -5216,7 +5216,7 @@ if test $ac_cv_func_syslog = no; then
   # syslog is not in the default libraries.  See if it's in some other.
   for lib in bsd socket inet; do
     AC_CHECK_LIB($lib, syslog, [AC_DEFINE(HAVE_SYSLOG)
-      LIBS="$LIBS $lib"; break])
+      LIBS="$LIBS -l$lib"; break])
   done
 fi
 @end example