# fcron's Makefile ########
############################
-# $Id: Makefile.in,v 1.15 2000-06-16 11:53:27 thib Exp $
+# $Id: Makefile.in,v 1.16 2000-06-18 13:13:52 thib Exp $
# ********************************************************* #
# *** Begin of configurable stuffs ************************ #
# -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 -DCHECKJOBS -Wall -Wpointer-arith -Wstrict-prototypes
#OPTIM= -DDEBUG -Wall -Wpointer-arith -Wstrict-prototypes
-OPTIM= -O2 -Wall
+#OPTIM= -O2 -Wall
#OPTIM= -O3 -mcpu=i686 -Wall
# Should not be changed under this #
####################################
-VERSION= 0.8.2
+VERSION= 0.8.3
CFLAGS= $(INCLUDE) $(OPTIM) $(OTHERFLAGS) $(OPTION) -DVERSION=\"$(VERSION)\" -DFCRONTABS=\"$(FCRONTABS)\" -DETC=\"$(ETC)\"
OBJSD = fcron.o subs.o database.o job.o log.o conf.o
OBJS= fcrontab.o fileconf.o subs.o log.o allow.c
* `LICENSE' that comes with the fcron source distribution.
*/
- /* $Id: fcrontab.h,v 1.3 2000-05-30 19:27:20 thib Exp $ */
+ /* $Id: fcrontab.h,v 1.4 2000-06-18 13:12:17 thib Exp $ */
#ifndef __FCRONTABH__
#define __FCRONTABH__
/* macros */
#define Skip_blanks(ptr) \
while((*ptr == ' ') || (*ptr == '\t')) \
- ptr++;
+ ptr++;
/* global variables */
extern char debug_opt;
/* prototype definition */
/* fileconf.c */
-extern int read_file(char *file_name, char *user);
+extern int read_file(char *filename, char *user);
extern void delete_file(const char *user_name);
extern void save_file(char *path);
/* end of fileconf.c */