]> granicus.if.org Git - fcron/commitdiff
replaced sys/termios.h by termios.h
authorthib <thib>
Tue, 23 Jan 2007 22:47:35 +0000 (22:47 +0000)
committerthib <thib>
Tue, 23 Jan 2007 22:47:35 +0000 (22:47 +0000)
config.h.in
configure.in
global.h

index 9984416d6384e62ba57267335e19fafa4c4b34af..03d9818947bf62f07592e6885f038ec584ecd88d 100644 (file)
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: config.h.in,v 1.59 2007-01-01 18:51:50 thib Exp $ */
+ /* $Id: config.h.in,v 1.60 2007-01-23 22:51:22 thib Exp $ */
 
 
 /* *********************************************************** */
 /* Define if you have the <sys/socket.h> header file.  */
 #undef HAVE_SYS_SOCKET_H
 
-/* Define if you have the <sys/termios.h> header file.  */
-#undef HAVE_SYS_TERMIOS_H
-
 /* Define if you have the <sys/time.h> header file.  */
 #undef HAVE_SYS_TIME_H
 
 /* Define if you have the <syslog.h> header file.  */
 #undef HAVE_SYSLOG_H
 
+/* Define if you have the <termios.h> header file.  */
+#undef HAVE_TERMIOS_H
+
 /* Define if you have the <unistd.h> header file.  */
 #undef HAVE_UNISTD_H
 
index 32ae9f458c249767b67a4527c1d9563ca2e07d08..05d731d96fc1ee485f01c26cab1783fbceab008a 100644 (file)
@@ -9,7 +9,7 @@ AC_INIT(allow.c)
 AC_CONFIG_HEADER(config.h)
 AC_PREREQ(2.57)
 
-vers="3.0.2-rc1"
+vers="3.0.3-rc1"
 vers_quoted="\"$vers\""
 AC_DEFINE_UNQUOTED(VERSION, $vers)
 AC_DEFINE_UNQUOTED(VERSION_QUOTED, $vers_quoted)
@@ -38,13 +38,15 @@ AC_HEADER_SYS_WAIT
 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(termios.h)
 AC_CHECK_HEADERS(strings.h)
 AC_CHECK_HEADERS(sys/types.h sys/socket.h sys/un.h)
 AC_CHECK_HEADERS(security/pam_appl.h pam/pam_appl.h crypt.h shadow.h)
 AC_CHECK_HEADERS(sys/resource.h)
 AC_CHECK_HEADERS(grp.h)
 
+AC_CHECK_SIZEOF(time_t)
+
 dnl Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
 AC_TYPE_PID_T
index 78db5b1cff27367bb116de898d5913ebbf7505d3..1cf25c7e75bf0629fabdebd55b4812ce514785e0 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.46 2006-01-11 00:53:14 thib Exp $ */
+ /* $Id: global.h,v 1.47 2007-01-23 22:49:03 thib Exp $ */
 
 
 /* 
@@ -98,8 +98,8 @@
 #include <sys/time.h>
 #endif
 
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
+#ifdef HAVE_TERMIOS_H
+#include <termios.h>
 #endif
 
 #ifdef HAVE_UNISTD_H