aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2012-06-12 13:19:08 -0400
committerGlenn Morris2012-06-12 13:19:08 -0400
commited846e5f8d424da84a71428aec61cfc853305394 (patch)
tree73385ba9acd78c1ece3a2cef8a46b237db234cad
parent98d8c1f9b57993f231c05d0bc93995e25130be38 (diff)
downloademacs-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--ChangeLog4
-rw-r--r--configure.in19
2 files changed, 17 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 55496500f99..4685fc0a25f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
12012-06-12 Glenn Morris <rgm@gnu.org>
2
3 * configure.in: Anticipate platforms with no src/s file.
4
12012-06-12 Chong Yidong <cyd@gnu.org> 52012-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)
3162AC_SUBST(CFLAGS) 3162AC_SUBST(CFLAGS)
3163## Used in lwlib/Makefile.in. 3163## Used in lwlib/Makefile.in.
3164AC_SUBST(X_TOOLKIT_TYPE) 3164AC_SUBST(X_TOOLKIT_TYPE)
3165S_FILE="\$(srcdir)/${opsysfile}" 3165if test -n "${opsysfile}"; then
3166 S_FILE="\$(srcdir)/${opsysfile}"
3167else
3168 S_FILE=
3169fi
3166AC_SUBST(S_FILE) 3170AC_SUBST(S_FILE)
3167AC_SUBST(ns_appdir) 3171AC_SUBST(ns_appdir)
3168AC_SUBST(ns_appbindir) 3172AC_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.])
3176AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}", 3180AC_DEFINE_UNQUOTED(EMACS_CONFIG_OPTIONS, "${ac_configure_args}",
3177 [Define to the options passed to configure.]) 3181 [Define to the options passed to configure.])
3178AC_DEFINE_UNQUOTED(config_opsysfile, "${opsysfile}", 3182if 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.])
3185fi
3180 3186
3181XMENU_OBJ= 3187XMENU_OBJ=
3182XOBJ= 3188XOBJ=
@@ -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 "
3614Configured for \`${canonical}'. 3622Configured 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}