Include <config.h>.
This commit is contained in:
parent
f22d478515
commit
2f8fe2f420
7 changed files with 22 additions and 8 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2001-12-29 Pavel Jan,Bm(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.
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -23,7 +23,10 @@
|
|||
|
||||
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. */
|
||||
|
|
|
|||
|
|
@ -10,7 +10,10 @@
|
|||
* 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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue