From: mmj Date: Thu, 22 Apr 2004 13:46:04 +0000 (+1000) Subject: Add syslog check and remove strip_file_to_fd X-Git-Tag: RELEASE_1_0_0~310 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fc6bb9159c154306613d282ece9520ecacbdd5c4;p=thirdparty%2Fmlmmj.git Add syslog check and remove strip_file_to_fd --- diff --git a/Makefile.in b/Makefile.in index f9fd9efa..301fcbcf 100644 --- a/Makefile.in +++ b/Makefile.in @@ -36,8 +36,8 @@ POST_UNINSTALL = : 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 --git a/config.h.in b/config.h.in index 21a9ff0d..8dbafe70 100644 --- a/config.h.in +++ b/config.h.in @@ -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 --git a/configure.ac b/configure.ac index e0ddf4a7..0b58eceb 100644 --- a/configure.ac +++ b/configure.ac @@ -26,7 +26,7 @@ AC_TYPE_SIZE_T # 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])