]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Wed, 21 Jun 2000 13:46:37 +0000 (13:46 +0000)
committerthib <thib>
Wed, 21 Jun 2000 13:46:37 +0000 (13:46 +0000)
Makefile.in
global.h

index 9a4e48a22e3e51e42a22fc3d83a005e3a1157f6e..3920e0b4e352026447a7fb0e2dfc2c9eeb0c5035 100644 (file)
@@ -2,7 +2,7 @@
 # fcron's Makefile  ########
 ############################
 
-# $Id: Makefile.in,v 1.18 2000-06-21 10:46:28 thib Exp $
+# $Id: Makefile.in,v 1.19 2000-06-21 13:46:53 thib Exp $
 
 # ********************************************************* #
 # *** Begin of configurable stuffs ************************ #
@@ -26,11 +26,12 @@ ETC=/etc/
 #      -DDEBUG         even more verbose
 #      -DCHECKJOBS     send a mail containing the exact shell command
 #                      for each execution of each job.
-#OPTIM=                -DDEBUG -g -DFOREGROUND
-OPTIM=         -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
-#OPTIM=                -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
-#OPTIM=                -O2 -Wall
-#OPTIM=                -O3 -mcpu=i686 -Wall
+#OPTIM=        -DDEBUG -g -DFOREGROUND
+#OPTIM=        -DDEBUG -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
+OPTIM= -DDEBUG -g -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
+#OPTIM=        -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
+#OPTIM=        -O2 -Wall
+#OPTIM=        -O3 -mcpu=i686 -Wall
 
 
 # Options
index 213e3c9a06690ff4ff2af42b7e44a4034a3de1ba..1544de07ae0a66464491c6db9b88f7e5ab020de9 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.10 2000-06-21 09:48:59 thib Exp $ */
+ /* $Id: global.h,v 1.11 2000-06-21 13:46:37 thib Exp $ */
 
 
 /* 
@@ -94,12 +94,12 @@ typedef struct CL {
     char         cl_option;     /* options for that line (see option.h) */
     char        *cl_shell;     /* shell command                        */
     pid_t       cl_pid;        /* running pid, 0, or armed (-1)        */
-    time_t       cl_nextexe;    /* time and date of the next execution */
-    short int    cl_remain;     /* remaining until next execution      */
-    time_t       cl_timefreq;   /* Run every n seconds                 */
-    short int    cl_runfreq;    /* Run once every n matches            */
+    time_t       cl_nextexe;    /* time and date of the next execution  */
+    short int    cl_remain;     /* remaining until next execution       */
+    time_t       cl_timefreq;   /* Run every n seconds                  */
+    short int    cl_runfreq;    /* Run once every n matches             */
     /* see bitstring(3) man page for more details */
-    bitstr_t    bit_decl(cl_mins, 60); /* 0-59                 */
+    bitstr_t    bit_decl(cl_mins, 60); /* 0-59                         */
     bitstr_t    bit_decl(cl_hrs, 24);  /* 0-23                         */
     bitstr_t    bit_decl(cl_days, 32); /* 1-31                         */
     bitstr_t    bit_decl(cl_mons, 12); /* 0-11                         */