diff options
| author | Glenn Morris | 2012-06-12 13:19:08 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-06-12 13:19:08 -0400 |
| commit | ed846e5f8d424da84a71428aec61cfc853305394 (patch) | |
| tree | 73385ba9acd78c1ece3a2cef8a46b237db234cad | |
| parent | 98d8c1f9b57993f231c05d0bc93995e25130be38 (diff) | |
| download | emacs-ed846e5f8d424da84a71428aec61cfc853305394.tar.gz emacs-ed846e5f8d424da84a71428aec61cfc853305394.zip | |
* configure.in: Anticipate platforms with no src/s file.
This is based on the previous treatment of src/m files.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 19 |
2 files changed, 17 insertions, 6 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-06-12 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.in: Anticipate platforms with no src/s file. | ||
| 4 | |||
| 1 | 2012-06-12 Chong Yidong <cyd@gnu.org> | 5 | 2012-06-12 Chong Yidong <cyd@gnu.org> |
| 2 | 6 | ||
| 3 | * configure.in: Check for MagickMergeImageLayers (Bug#11678). | 7 | * configure.in: Check for MagickMergeImageLayers (Bug#11678). |
diff --git a/configure.in b/configure.in index a91b7f06b40..6e55ea06581 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -3162,7 +3162,11 @@ AC_SUBST(GNUSTEP_CFLAGS) | |||
| 3162 | AC_SUBST(CFLAGS) | 3162 | AC_SUBST(CFLAGS) |
| 3163 | ## Used in lwlib/Makefile.in. | 3163 | ## Used in lwlib/Makefile.in. |
| 3164 | AC_SUBST(X_TOOLKIT_TYPE) | 3164 | AC_SUBST(X_TOOLKIT_TYPE) |
| 3165 | S_FILE="\$(srcdir)/${opsysfile}" | 3165 | if test -n "${opsysfile}"; then |
| 3166 | S_FILE="\$(srcdir)/${opsysfile}" | ||
| 3167 | else | ||
| 3168 | S_FILE= | ||
| 3169 | fi | ||
| 3166 | AC_SUBST(S_FILE) | 3170 | AC_SUBST(S_FILE) |
| 3167 | AC_SUBST(ns_appdir) | 3171 | AC_SUBST(ns_appdir) |
| 3168 | AC_SUBST(ns_appbindir) | 3172 | AC_SUBST(ns_appbindir) |
| @@ -3175,8 +3179,10 @@ AC_DEFINE_UNQUOTED(EMACS_CONFIGURATION, "${canonical}", | |||
| 3175 | [Define to the canonical Emacs configuration name.]) | 3179 | [Define to the canonical Emacs configuration name.]) |
| 3176 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}", | 3180 | AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}", |
| 3177 | [Define to the options passed to configure.]) | 3181 | [Define to the options passed to configure.]) |
| 3178 | AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}", | 3182 | if test -n "$opsysfile"; then |
| 3179 | [Define to the used os dependent file.]) | 3183 | AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}", |
| 3184 | [Define to the used os dependent file.]) | ||
| 3185 | fi | ||
| 3180 | 3186 | ||
| 3181 | XMENU_OBJ= | 3187 | XMENU_OBJ= |
| 3182 | XOBJ= | 3188 | XOBJ= |
| @@ -3519,7 +3525,9 @@ AH_BOTTOM([ | |||
| 3519 | #define subprocesses | 3525 | #define subprocesses |
| 3520 | 3526 | ||
| 3521 | /* Include the os dependent file. */ | 3527 | /* Include the os dependent file. */ |
| 3522 | #include config_opsysfile | 3528 | #ifdef config_opsysfile |
| 3529 | # include config_opsysfile | ||
| 3530 | #endif | ||
| 3523 | 3531 | ||
| 3524 | /* GNUstep needs a bit more pure memory. Of the existing knobs, | 3532 | /* GNUstep needs a bit more pure memory. Of the existing knobs, |
| 3525 | SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. | 3533 | SYSTEM_PURESIZE_EXTRA seems like the least likely to cause problems. |
| @@ -3614,8 +3622,7 @@ echo " | |||
| 3614 | Configured for \`${canonical}'. | 3622 | Configured for \`${canonical}'. |
| 3615 | 3623 | ||
| 3616 | Where should the build process find the source code? ${srcdir} | 3624 | Where should the build process find the source code? ${srcdir} |
| 3617 | What operating system file should Emacs use? | 3625 | What operating system file should Emacs use? \`${opsysfile-none}' |
| 3618 | \`${opsysfile}' | ||
| 3619 | What compiler should emacs be built with? ${CC} ${CFLAGS} | 3626 | What compiler should emacs be built with? ${CC} ${CFLAGS} |
| 3620 | Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason} | 3627 | Should Emacs use the GNU version of malloc? ${GNU_MALLOC}${GNU_MALLOC_reason} |
| 3621 | Should Emacs use a relocating allocator for buffers? ${REL_ALLOC} | 3628 | Should Emacs use a relocating allocator for buffers? ${REL_ALLOC} |