From: Thibault Godouet Date: Sun, 3 Jun 2001 10:55:53 +0000 (+0000) Subject: added strings.h (required for bzero() under Solaris) X-Git-Tag: ver2_9_4~327 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=da6e44bf28c087d4883e93caa4a0369cdfdabb8c;p=thirdparty%2Ffcron.git added strings.h (required for bzero() under Solaris) --- diff --git a/config.h.in b/config.h.in index 6e69dc6..9e45de4 100644 --- a/config.h.in +++ b/config.h.in @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: config.h.in,v 1.29 2001-05-29 19:32:45 thib Exp $ */ + /* $Id: config.h.in,v 1.30 2001-06-03 10:59:09 thib Exp $ */ /* *********************************************************** */ @@ -279,6 +279,9 @@ /* Define if you have the header file. */ #undef HAVE_STDARG_H +/* Define if you have the header file. */ +#undef HAVE_STRINGS_H + /* Define if you have the header file. */ #undef HAVE_SYS_DIR_H diff --git a/configure.in b/configure.in index fa48cb5..25e8c17 100644 --- a/configure.in +++ b/configure.in @@ -30,6 +30,7 @@ AC_CHECK_HEADERS(fcntl.h sys/file.h sys/ioctl.h sys/time.h syslog.h unistd.h) AC_CHECK_HEADERS(errno.h sys/fcntl.h getopt.h limits.h) AC_CHECK_HEADERS(stdarg.h) AC_CHECK_HEADERS(sys/termios.h) +AC_CHECK_HEADERS(strings.h) dnl Checks for typedefs, structures, and compiler characteristics. AC_C_CONST diff --git a/global.h b/global.h index 06be51c..c1e1332 100644 --- a/global.h +++ b/global.h @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: global.h,v 1.28 2001-05-28 18:48:48 thib Exp $ */ + /* $Id: global.h,v 1.29 2001-06-03 10:57:18 thib Exp $ */ /* @@ -58,6 +58,10 @@ #include #include +#ifdef HAVE_STRINGS_H +#include +#endif + #ifdef HAVE_SYS_FILE_H #include #endif