]> granicus.if.org Git - fcron/commitdiff
*** empty log message ***
authorthib <thib>
Sun, 31 Mar 2002 17:20:35 +0000 (17:20 +0000)
committerthib <thib>
Sun, 31 Mar 2002 17:20:35 +0000 (17:20 +0000)
doc/en/install.sgml
fcron.c

index b62e57ed59813bbe1ee7a3265907d93d7e9d32ae..41fe31dcde82e41c249a34d3df1d0946a0787d47 100644 (file)
@@ -8,7 +8,7 @@ Foundation.
 A copy of the license is included in gfdl.sgml.
 -->
 
-<!-- $Id: install.sgml,v 1.2 2002-01-03 22:39:28 thib Exp $ -->
+<!-- $Id: install.sgml,v 1.3 2002-03-31 17:20:58 thib Exp $ -->
 
 <sect1 id="install">
     <title>How to install fcron</title>
@@ -50,9 +50,10 @@ A copy of the license is included in gfdl.sgml.
                        </listitem>
                        <listitem>
                            <para>
-                               To disable the use of <productname>PAM</productname>,
-                               use <command>configure</command>'s option
-                               <option>--with-pam=no</option>.</para>
+                               To disable the use of <productname>PAM</productname> or
+                                &fcrondyn;, use <command>configure</command>'s option
+                               <option>--with-pam=no</option> and/or 
+                                <option>--with-fcrondyn=no</option>.</para>
                        </listitem>
                        <listitem>
                            <para>To debug &fcron;, you should use <command>configure
diff --git a/fcron.c b/fcron.c
index 26dfae7858ce4149744b0c3e05a9c60eb990ca39..fde5c5105e7b1a0d2f6002ca4b40a73259f66330 100644 (file)
--- a/fcron.c
+++ b/fcron.c
@@ -21,7 +21,7 @@
  *  `LICENSE' that comes with the fcron source distribution.
  */
 
- /* $Id: fcron.c,v 1.62 2002-03-31 15:05:49 thib Exp $ */
+ /* $Id: fcron.c,v 1.63 2002-03-31 17:20:35 thib Exp $ */
 
 #include "fcron.h"
 
@@ -33,7 +33,7 @@
 #include "socket.h"
 #endif
 
-char rcs_info[] = "$Id: fcron.c,v 1.62 2002-03-31 15:05:49 thib Exp $";
+char rcs_info[] = "$Id: fcron.c,v 1.63 2002-03-31 17:20:35 thib Exp $";
 
 void main_loop(void);
 void check_signal(void);
@@ -654,7 +654,9 @@ main_loop()
     struct timeval tv;     /* we use usec field to get more precision */
     time_t stime;          /* time to sleep until next job
                            * execution */
+#ifdef FCRONDYN
     int retcode = 0;
+#endif
 
     debug("Entering main loop");