mirror of
git://git.sv.gnu.org/autoconf
synced 2025-03-19 14:40:24 +08:00
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:
parent
bec736060f
commit
7be3d59f1b
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user