Include <config.h>.
authorPavel Janík <Pavel@Janik.cz>
Sat, 29 Dec 2001 22:25:06 +0000 (22:25 +0000)
committerPavel Janík <Pavel@Janik.cz>
Sat, 29 Dec 2001 22:25:06 +0000 (22:25 +0000)
lib-src/ChangeLog
lib-src/cvtmail.c
lib-src/emacsclient.c
lib-src/emacsserver.c
lib-src/pop.c
lib-src/sorted-doc.c
lib-src/yow.c

index 19487ff..f665b25 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-29  Pavel Jan\e,Bm\e(Bk  <Pavel@Janik.cz>
+
+       * cvtmail.c, emacsclient.c, emacsserver.c, pop.c, sorted-doc.c,
+       * yow.c: Include <config.h>.
+
 2001-12-21  Francesco Potorti`  <pot@gnu.org>
 
        * etags.c (Perl_functions): Tag packages and use them in sub tags.
index b967f81..453267f 100644 (file)
@@ -29,11 +29,14 @@ Boston, MA 02111-1307, USA.  */
  *
  * In order to get rmail to read the messages, the resulting file must
  * be mv'ed to ~/mbox, and then have rmail invoked on them.
- * 
+ *
  * Author: Larry Kolodney, 1985
  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 
 #ifndef HAVE_STDLIB_H
@@ -119,7 +122,7 @@ main (argc, argv)
        }
     }
   fclose (mddf);
-  fclose (mfilef);    
+  fclose (mfilef);
   return 0;
 }
 
index 13d3e1f..27bce2d 100644 (file)
@@ -23,7 +23,7 @@ Boston, MA 02111-1307, USA.  */
 #define NO_SHORTNAMES
 
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
 #undef signal
index 431c5b3..3d09909 100644 (file)
@@ -28,7 +28,7 @@ Boston, MA 02111-1307, USA.  */
 #define NO_SHORTNAMES
 
 #ifdef HAVE_CONFIG_H
-#include "config.h"
+#include <config.h>
 #endif
 
 #include <signal.h>
index 1c2cc95..2cf8f92 100644 (file)
@@ -21,7 +21,7 @@ Boston, MA 02111-1307, USA.  */
 
 #ifdef HAVE_CONFIG_H
 #define NO_SHORTNAMES  /* Tell config not to load remap.h */
-#include <../src/config.h>
+#include <config.h>
 #else
 #define MAIL_USE_POP
 #endif
index d0c160b..d474924 100644 (file)
 
    This version sorts the output by function name.  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 #include <ctype.h>
 #ifndef HAVE_STDLIB_H          /* config.h includes stdlib.  */
index a45623e..c658b15 100644 (file)
  * With dynamic memory allocation.
  */
 
-#include "config.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
 #include <stdio.h>
 #include <ctype.h>
 #ifdef HAVE_STRING_H