]> granicus.if.org Git - fcron/commitdiff
added strings.h (required for bzero() under Solaris)
authorthib <thib>
Sun, 3 Jun 2001 10:55:53 +0000 (10:55 +0000)
committerthib <thib>
Sun, 3 Jun 2001 10:55:53 +0000 (10:55 +0000)
config.h.in
configure.in
global.h

index 6e69dc62e4f4b9db3aeca994e7e8d17cd355c062..9e45de4b3bb049aecceb54174c87dc4fadb0439e 100644 (file)
@@ -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 $ */
 
 
 /* *********************************************************** */
 /* Define if you have the <stdarg.h> header file.  */
 #undef HAVE_STDARG_H
 
+/* Define if you have the <strings.h> header file.  */
+#undef HAVE_STRINGS_H
+
 /* Define if you have the <sys/dir.h> header file.  */
 #undef HAVE_SYS_DIR_H
 
index fa48cb5aac22c9f0dbce4212f26491744d67f1ae..25e8c17fdf63f44efd2abaa65c6e4228c49e446d 100644 (file)
@@ -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
index 06be51cec99797dd675aa50c856ff19139834399..c1e13321aa98d6143f9cb2a67b98808cb08e66f9 100644 (file)
--- 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 $ */
 
 
 /* 
 #include <stdlib.h>
 #include <string.h>
 
+#ifdef HAVE_STRINGS_H
+#include <strings.h>
+#endif
+
 #ifdef HAVE_SYS_FILE_H
 #include <sys/file.h>
 #endif