Mercurial > emacs
changeset 42469:64341c22fb4c
Include <config.h>.
author | Pavel Janík <Pavel@Janik.cz> |
---|---|
date | Tue, 01 Jan 2002 19:15:26 +0000 |
parents | 3d8bcf574e38 |
children | fd37f9aafadc |
files | lib-src/fakemail.c src/sysdep.c src/unexapollo.c src/w32.c src/w32bdf.c src/w32heap.c src/w32inevt.c src/w32proc.c |
diffstat | 8 files changed, 30 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/fakemail.c Tue Jan 01 19:13:57 2002 +0000 +++ b/lib-src/fakemail.c Tue Jan 01 19:15:26 2002 +0000 @@ -22,7 +22,7 @@ #define _XOPEN_SOURCE 500 /* for cuserid */ #ifdef HAVE_CONFIG_H -#include "config.h" +#include <config.h> #endif #if defined (BSD_SYSTEM) && !defined (BSD4_1) && !defined (USE_FAKEMAIL)
--- a/src/sysdep.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/sysdep.c Tue Jan 01 19:15:26 2002 +0000 @@ -19,8 +19,10 @@ the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ - -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <signal.h> #include <setjmp.h> #ifdef HAVE_UNISTD_H
--- a/src/unexapollo.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/unexapollo.c Tue Jan 01 19:15:26 2002 +0000 @@ -20,7 +20,10 @@ /* Written by Leonard N. Zubkoff. */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include <fcntl.h>
--- a/src/w32.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/w32.c Tue Jan 01 19:15:26 2002 +0000 @@ -35,7 +35,11 @@ #include <sys/utime.h> /* must include CRT headers *before* config.h */ -#include "config.h" + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #undef access #undef chdir #undef chmod
--- a/src/w32bdf.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/w32bdf.c Tue Jan 01 19:15:26 2002 +0000 @@ -22,7 +22,11 @@ MULE for W32). */ #include <windows.h> -#include "config.h" + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #include "lisp.h" #include "charset.h" #include "keyboard.h"
--- a/src/w32heap.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/w32heap.c Tue Jan 01 19:15:26 2002 +0000 @@ -21,7 +21,9 @@ Geoff Voelker (voelker@cs.washington.edu) 7-29-94 */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <stdlib.h> #include <stdio.h>
--- a/src/w32inevt.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/w32inevt.c Tue Jan 01 19:15:26 2002 +0000 @@ -23,7 +23,9 @@ */ -#include "config.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <stdlib.h> #include <stdio.h>
--- a/src/w32proc.c Tue Jan 01 19:13:57 2002 +0000 +++ b/src/w32proc.c Tue Jan 01 19:15:26 2002 +0000 @@ -30,7 +30,11 @@ #include <signal.h> /* must include CRT headers *before* config.h */ -#include "config.h" + +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif + #undef signal #undef wait #undef spawnve