]> granicus.if.org Git - fcron/commitdiff
bug fix : use HAVE_*_FTNCTL after their definition ;)
authorthib <thib>
Mon, 29 Dec 2003 17:06:16 +0000 (17:06 +0000)
committerthib <thib>
Mon, 29 Dec 2003 17:06:16 +0000 (17:06 +0000)
config.h.in

index a33cdcccb0d1793923ebad2a39c7b54df2e8af19..198adf3d60ce721168b8af59943df085085ded14 100644 (file)
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: config.h.in,v 1.50 2003-12-29 14:31:28 thib Exp $ */
+ /* $Id: config.h.in,v 1.51 2003-12-29 17:06:16 thib Exp $ */
 
 
 /* *********************************************************** */
 /* special user for the system fcrontab */
 #undef SYSFCRONTAB
 
-/* some systems (*BSD, ...) use O_FSYNC instead of O_SYNC for open() */
-#ifdef HAVE_FCNTL_H
-#include <fcntl.h>
-#elif HAVE_SYS_FCNTL_H
-#include <sys/fcntl.h>
-#endif
-#ifndef O_SYNC
-#define O_SYNC O_FSYNC
-#endif
-
 /* Define to empty if the keyword does not work.  */
 #undef const
 
 
 /* Define if you have the xnet library (-lxnet).  */
 #undef HAVE_LIBXNET
+
+/* some systems (*BSD, ...) use O_FSYNC instead of O_SYNC for open() */
+#ifdef HAVE_FCNTL_H
+#include <fcntl.h>
+#elif HAVE_SYS_FCNTL_H
+#include <sys/fcntl.h>
+#endif
+#ifndef O_SYNC
+#define O_SYNC O_FSYNC
+#endif
+