From: Thibault Godouet Date: Mon, 22 May 2000 17:46:43 +0000 (+0000) Subject: minor bug corrected : ETC constant added X-Git-Tag: ver2_9_4~719 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5871961e085bffac8cbbf020887681ec5e7ad3a4;p=thirdparty%2Ffcron.git minor bug corrected : ETC constant added --- diff --git a/config.h.in b/config.h.in index 2e8b3fa..16abaee 100644 --- a/config.h.in +++ b/config.h.in @@ -21,7 +21,7 @@ * `LICENSE' that comes with the fcron source distribution. */ - /* $Id: config.h.in,v 1.2 2000-05-15 18:28:34 thib Exp $ */ + /* $Id: config.h.in,v 1.3 2000-05-22 17:46:43 thib Exp $ */ /* *********************************************************** */ @@ -39,6 +39,7 @@ /* *** options which can be set in Makefile *** */ +/* (they are overridden by Makefile's value ) */ #ifndef VERSION #define VERSION "1.0.0" /* default version if not defined in Makefile */ @@ -48,6 +49,10 @@ #define FCRONTABS "/var/spool/fcron/" #endif +#ifndef ETC /* directory where are stored fcrontab.allow/deny */ +#define ETC "/etc/" +#endif + #ifndef DEBUG #define DEBUG 0 /* 1 if you want debug mode */ #endif