]> granicus.if.org Git - fcron/commitdiff
email address updated
authorthib <thib>
Tue, 30 May 2000 19:24:44 +0000 (19:24 +0000)
committerthib <thib>
Tue, 30 May 2000 19:24:44 +0000 (19:24 +0000)
14 files changed:
Makefile.in
allow.c
conf.c
config.h.in
database.c
fcron.c
fcron.h
fcrontab.c
fcrontab.h
fileconf.c
global.h
job.c
log.c
subs.c

index 23142699c06d1f92d790231fe792f90511d10959..aa0dfd6a637fb84155d187e16deb6a2ffb2b090d 100644 (file)
@@ -2,7 +2,7 @@
 # fcron's Makefile  ########
 ############################
 
-# $Id: Makefile.in,v 1.8 2000-05-24 17:51:59 thib Exp $
+# $Id: Makefile.in,v 1.9 2000-05-30 19:27:33 thib Exp $
 
 # ********************************************************* #
 # *** Begin of configurable stuffs ************************ #
@@ -27,7 +27,8 @@ ETC=/etc/
 #      -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=                -O3 -mcpu=i686 -Wall
 
@@ -104,7 +105,7 @@ install: all
        $(INSTALL) -c -m 644 -o root doc/fcrontab.5 $(DESTMAN)/man5/
        $(INSTALL) -c -m 644 -o root doc/bitstring.3 $(DESTMAN)/man3/
        script/sysVinit-install "$(CFLAGS)" $(INSTALL)
-       mkdir -p /usr/doc/fcron-$(VERSION)
+       mkdir -p $(DESTDOC)/fcron-$(VERSION)
        cd doc; $(INSTALL) -c -m 644 -o root README LICENSE CHANGES *.html \
                 $(DESTDOC)/fcron-$(VERSION)/
        mkdir -p $(FCRONTABS)
@@ -124,11 +125,12 @@ vclean: clean
 
 %.html: %
        groff -Thtml -mandoc $* > ./tmp
-       sed "s:<body>:<body BGCOLOR="\#000000" TEXT="\#FFFFFF">\
-           <h1>$(*F)</h1><br>:I" < ./tmp > $@
+       sed "s:<body.*>:<body BGCOLOR="\#000000" TEXT="\#FFFFFF" \
+               LINK="\#0FA0FF" VLINK="\#B000B0" ALINK="\#FF0000"> \
+               <h1>$(*F)</h1><br>:I" < ./tmp > $@
        rm -f ./tmp
 
-updatedoc: doc/*.html
+updatedoc: doc/*
        script/gen-doc $(VERSION)
 
 
diff --git a/allow.c b/allow.c
index 4ad98dd0fd97ace6e4914117257e29b415dbd5d4..565eba1b1d38213f76204a20f54ad470d85b7ef2 100644 (file)
--- a/allow.c
+++ b/allow.c
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: allow.c,v 1.2 2000-05-15 18:28:31 thib Exp $ */
+ /* $Id: allow.c,v 1.3 2000-05-30 19:24:44 thib Exp $ */
 
 #include "fcrontab.h"
 
diff --git a/conf.c b/conf.c
index 5cac124b5da1a921f2b935dcbf6fb1f8503622d2..5f945276b42c78429c3662b2df1e9dd6cf14c4f7 100644 (file)
--- a/conf.c
+++ b/conf.c
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: conf.c,v 1.2 2000-05-15 18:28:33 thib Exp $ */
+ /* $Id: conf.c,v 1.3 2000-05-30 19:25:41 thib Exp $ */
 
 #include "fcron.h"
 
index 16abaeef7a3d32dc8931ea19f85117e56e89406e..75e51f5c60d949be2b749e5140961b6b06bc78ed 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: config.h.in,v 1.3 2000-05-22 17:46:43 thib Exp $ */
+ /* $Id: config.h.in,v 1.4 2000-05-30 19:26:13 thib Exp $ */
 
 
 /* *********************************************************** */
index 22edb4fccb6f5fb037f02b2759ca7564d49a8b17..596af728c002ec320ad549cb12aa5217a09a1d70 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: database.c,v 1.4 2000-05-24 12:35:19 thib Exp $ */
+ /* $Id: database.c,v 1.5 2000-05-30 19:26:21 thib Exp $ */
 
 #include "fcron.h"
 
diff --git a/fcron.c b/fcron.c
index a73bb015a2961a7c72389640eef500922c022df6..18b632f0ba2175eea91e3dbc018b74b64468c5f0 100644 (file)
--- a/fcron.c
+++ b/fcron.c
@@ -1,7 +1,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.c,v 1.7 2000-05-24 17:51:37 thib Exp $ */
+ /* $Id: fcron.c,v 1.8 2000-05-30 19:26:28 thib Exp $ */
 
 #include "fcron.h"
 
-char rcs_info[] = "$Id: fcron.c,v 1.7 2000-05-24 17:51:37 thib Exp $";
+char rcs_info[] = "$Id: fcron.c,v 1.8 2000-05-30 19:26:28 thib Exp $";
 
 void main_loop(void);
 void info(void);
@@ -58,7 +58,7 @@ info(void)
 {
     fprintf(stderr,
            "fcron " VERSION " - periodic command scheduler\n"
-           "Copyright 2000 Thibault Godouet <sphawk@free.fr>\n"
+           "Copyright 2000 Thibault Godouet <fcron@free.fr>\n"
            "This program is free software distributed\n"
            "WITHOUT ANY WARRANTY.\n"
             "See the GNU General Public License for more details.\n"
diff --git a/fcron.h b/fcron.h
index 7afb9658583d2d89149be872fe57093a72b35665..b419203e82a5335783e4fb97748090043701b06f 100644 (file)
--- a/fcron.h
+++ b/fcron.h
@@ -1,7 +1,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.h,v 1.3 2000-05-16 19:53:42 thib Exp $ */
+ /* $Id: fcron.h,v 1.4 2000-05-30 19:26:48 thib Exp $ */
 
 #ifndef __FCRONH__
 #define __FCRONH__
index 003ccda712ee8017de71fe08d17ab1507b3f6f85..15687f071a1cc4999a04c9bbc9804e7433aad284 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcrontab.c,v 1.3 2000-05-17 19:20:36 thib Exp $ */
+ /* $Id: fcrontab.c,v 1.4 2000-05-30 19:26:58 thib Exp $ */
 
 /* 
  * The goal of this program is simple : giving a user interface to fcron
@@ -42,7 +42,7 @@
 
 #include "fcrontab.h"
 
-char rcs_info[] = "$Id: fcrontab.c,v 1.3 2000-05-17 19:20:36 thib Exp $";
+char rcs_info[] = "$Id: fcrontab.c,v 1.4 2000-05-30 19:26:58 thib Exp $";
 
 void info(void);
 void usage(void);
@@ -80,7 +80,7 @@ info(void)
 {
     fprintf(stderr,
            "fcrontab " VERSION " - user interface to daemon fcron\n"
-           "Copyright 2000 Thibault Godouet <sphawk@free.fr>\n"
+           "Copyright 2000 Thibault Godouet <fcron@free.fr>\n"
            "This program is free software distributed\n"
            "WITHOUT ANY WARRANTY.\n"
             "See the GNU General Public License for more details.\n"
index 57edce7bbc98ea9264eb598d55011e31d7d77f15..5d6a164e89a41145d304c288656fd2f6b8849242 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcrontab.h,v 1.2 2000-05-15 18:28:42 thib Exp $ */
+ /* $Id: fcrontab.h,v 1.3 2000-05-30 19:27:20 thib Exp $ */
 
 #ifndef __FCRONTABH__
 #define __FCRONTABH__
index e50d6d754ac0d1d8cdf9561459505bec4e7c9a5d..152c7403b5454607a834d0d9e6218ec9d75127fb 100644 (file)
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fileconf.c,v 1.2 2000-05-15 18:28:44 thib Exp $ */
+ /* $Id: fileconf.c,v 1.3 2000-05-30 19:27:26 thib Exp $ */
 
 #include "fcrontab.h"
 
index e2e47f5e3d5a460ceddc8e521b3b1a210d206256..3ffab6c691933c514dd8eca000a5153c7197dc10 100644 (file)
--- a/global.h
+++ b/global.h
@@ -1,7 +1,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: global.h,v 1.3 2000-05-24 17:51:55 thib Exp $ */
+ /* $Id: global.h,v 1.4 2000-05-30 19:27:28 thib Exp $ */
 
 #ifndef __GLOBALH__
 #define __GLOBALH__
diff --git a/job.c b/job.c
index e81cdb98720b77f996bfa0c15a9601771a5a773c..e6cea3753e89fb81f6b5f43a61cf876abf92fe6c 100644 (file)
--- a/job.c
+++ b/job.c
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: job.c,v 1.4 2000-05-22 17:37:39 thib Exp $ */
+ /* $Id: job.c,v 1.5 2000-05-30 19:27:30 thib Exp $ */
 
 #include "fcron.h"
 
diff --git a/log.c b/log.c
index 1e54c755fd8c5e524798f2eb8603ea3ea92bc76e..722b60b6583a4174c09859ef576adf35800ca954 100644 (file)
--- a/log.c
+++ b/log.c
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: log.c,v 1.2 2000-05-15 18:28:56 thib Exp $ */
+ /* $Id: log.c,v 1.3 2000-05-30 19:27:32 thib Exp $ */
 
 /* This code is inspired by Anacron's sources of
    Itai Tzur <itzur@actcom.co.il> ( thanks to him ) */
diff --git a/subs.c b/subs.c
index 310ca2cf0faa73f5616b12cd597e45188a010677..a8e7d05612c53b72f4e7db8c0f8c2f00f065fcdb 100644 (file)
--- a/subs.c
+++ b/subs.c
@@ -2,7 +2,7 @@
 /*
  * FCRON - periodic command scheduler 
  *
- *  Copyright 2000 Thibault Godouet <sphawk@free.fr>
+ *  Copyright 2000 Thibault Godouet <fcron@free.fr>
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -22,7 +22,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: subs.c,v 1.2 2000-05-15 18:28:59 thib Exp $ */
+ /* $Id: subs.c,v 1.3 2000-05-30 19:27:35 thib Exp $ */
 
 #include "global.h"