From: thib Date: Sun, 3 Jun 2001 10:55:53 +0000 (+0000) Subject: added strings.h (required for bzero() under Solaris) X-Git-Tag: ver1564~253 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f749db1167ff0a59cd35a8bb827a113a3d183504;p=fcron 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