# HG changeset patch # User mmj # Date 1082641564 -36000 # Node ID bad8b9b378a0fbbcb711c9001d3b7364dbdde690 # Parent f54f95a4c53e695e6448ddc4968682983a18ad9b Add syslog check and remove strip_file_to_fd diff -r f54f95a4c53e -r bad8b9b378a0 Makefile.in --- a/Makefile.in Thu Apr 22 23:15:53 2004 +1000 +++ b/Makefile.in Thu Apr 22 23:46:04 2004 +1000 @@ -36,8 +36,8 @@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ - $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL \ - THANKS TODO depcomp install-sh missing mkinstalldirs + $(top_srcdir)/configure AUTHORS COPYING ChangeLog THANKS TODO \ + depcomp install-sh missing mkinstalldirs ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ diff -r f54f95a4c53e -r bad8b9b378a0 config.h.in --- a/config.h.in Thu Apr 22 23:15:53 2004 +1000 +++ b/config.h.in Thu Apr 22 23:46:04 2004 +1000 @@ -64,6 +64,9 @@ /* Define to 1 if you have the `strncasecmp' function. */ #undef HAVE_STRNCASECMP +/* Define to 1 if you have the `syslog' function. */ +#undef HAVE_SYSLOG + /* Define to 1 if you have the header file. */ #undef HAVE_SYSLOG_H diff -r f54f95a4c53e -r bad8b9b378a0 configure.ac --- a/configure.ac Thu Apr 22 23:15:53 2004 +1000 +++ b/configure.ac Thu Apr 22 23:46:04 2004 +1000 @@ -26,7 +26,7 @@ # Checks for library functions. AC_FUNC_MALLOC AC_CHECK_FUNCS([ftruncate memset socket strerror strncasecmp snprintf fcntl]) -AC_CHECK_FUNCS([nanosleep time strftime]) +AC_CHECK_FUNCS([nanosleep time strftime syslog]) AC_CONFIG_FILES([Makefile]) AC_CONFIG_FILES([src/Makefile])