1999-08-26 Ben Elliston <bje@cygnus.com>

* autoconf.texi (Changed Results): Correct an error in one of the
	examples. Fix for autoconf/38.
This commit is contained in:
Ben Elliston 1999-08-25 14:31:53 +00:00
parent bec736060f
commit 7be3d59f1b
3 changed files with 7 additions and 2 deletions

View File

@ -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

View 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

View 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