diff options
| author | Glenn Morris | 2012-07-30 17:20:43 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-07-30 17:20:43 -0400 |
| commit | b429a4eee4e09b1ba09e17ced5091d042955d84f (patch) | |
| tree | 5e8cb71a2e905c8c826d90737186763615d754b5 /src/Makefile.in | |
| parent | 8f25abd317c64e2a69e1839633382841c3848a2d (diff) | |
| download | emacs-b429a4eee4e09b1ba09e17ced5091d042955d84f.tar.gz emacs-b429a4eee4e09b1ba09e17ced5091d042955d84f.zip | |
Use an include file in configure.ac's AH_BOTTOM
* configure.ac (AH_BOTTOM): Use an include file, so that the
contents do not get processed by autoheader. Eg this prevents undefs
being commented out, and is the recommended technique from the
autoconf manual.
* src/conf_post.h: New, split from configure.ac's AH_BOTTOM.
* src/Makefile.in (config_h): Add conf_post.h.
* src/makefile.w32-in (CONFIG_H): Add conf_post.h.
Diffstat (limited to 'src/Makefile.in')
| -rw-r--r-- | src/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 2f96affeb56..1ea7d162b14 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -57,7 +57,7 @@ lispdir = ../lisp | |||
| 57 | 57 | ||
| 58 | # Configuration files for .o files to depend on. | 58 | # Configuration files for .o files to depend on. |
| 59 | S_FILE = @S_FILE@ | 59 | S_FILE = @S_FILE@ |
| 60 | config_h = config.h $(S_FILE) | 60 | config_h = config.h conf_post.h $(S_FILE) |
| 61 | 61 | ||
| 62 | bootstrap_exe = $(abs_builddir)/bootstrap-emacs$(EXEEXT) | 62 | bootstrap_exe = $(abs_builddir)/bootstrap-emacs$(EXEEXT) |
| 63 | 63 | ||