From 7be3d59f1bc61d987d01a90173b1ed9555010a8f Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Wed, 25 Aug 1999 14:31:53 +0000 Subject: [PATCH] 1999-08-26 Ben Elliston * autoconf.texi (Changed Results): Correct an error in one of the examples. Fix for autoconf/38. --- ChangeLog | 5 +++++ autoconf.texi | 2 +- doc/autoconf.texi | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 76d6d419..f1f0207d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +1999-08-26 Ben Elliston + + * autoconf.texi (Changed Results): Correct an error in one of the + examples. Fix for autoconf/38. + 1999-08-25 Ben Elliston * autoconf.texi (Cache Variable Names): Be more explicit about the diff --git a/autoconf.texi b/autoconf.texi index be7709da..21d4c4e3 100644 --- a/autoconf.texi +++ b/autoconf.texi @@ -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 diff --git a/doc/autoconf.texi b/doc/autoconf.texi index be7709da..21d4c4e3 100644 --- a/doc/autoconf.texi +++ b/doc/autoconf.texi @@ -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