aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2014-11-24 09:07:45 -0800
committerGlenn Morris2014-11-24 09:07:45 -0800
commit409e4c82dccb9dc0d48c54735161c8f4cc383625 (patch)
treee099205f8e5a98bc4d8777c8c5f409661ebe037f
parentf9bff82aa49b4380f7d2efa916207d2874616ba8 (diff)
downloademacs-409e4c82dccb9dc0d48c54735161c8f4cc383625.tar.gz
emacs-409e4c82dccb9dc0d48c54735161c8f4cc383625.zip
* configure.ac [HAVE_W32]: Generate nt/*.rc files when HAVE_W32.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac7
2 files changed, 10 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f40624c42e9..5fe2a913b93 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12014-11-24 Glenn Morris <rgm@gnu.org>
2
3 * configure.ac [HAVE_W32]: Generate nt/*.rc files when HAVE_W32,
4 not just when using mingw32.
5
12014-11-22 Glenn Morris <rgm@gnu.org> 62014-11-22 Glenn Morris <rgm@gnu.org>
2 7
3 Further reduce number of versioned files storing Emacs version number. 8 Further reduce number of versioned files storing Emacs version number.
diff --git a/configure.ac b/configure.ac
index 85d11234035..1c7ec54ec17 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4679,7 +4679,10 @@ AH_TEMPLATE(config_opsysfile, [Some platforms that do not use configure
4679case $opsys in 4679case $opsys in
4680 mingw32) 4680 mingw32)
4681 AC_DEFINE(config_opsysfile, <ms-w32.h>, []) 4681 AC_DEFINE(config_opsysfile, <ms-w32.h>, [])
4682 ;;
4683esac
4682 4684
4685if test "${HAVE_W32}" = "yes"; then
4683 dnl Construct something of the form "24,4,0,0" with 4 components. 4686 dnl Construct something of the form "24,4,0,0" with 4 components.
4684 comma_version=`echo "$version.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'` 4687 comma_version=`echo "$version.0.0" | sed -e 's/\./,/g' -e 's/^\([[^,]]*,[[^,]]*,[[^,]]*,[[^,]]*\).*/\1/'`
4685 4688
@@ -4688,8 +4691,8 @@ case $opsys in
4688 AC_SUBST(comma_version) 4691 AC_SUBST(comma_version)
4689 AC_SUBST(comma_space_version) 4692 AC_SUBST(comma_space_version)
4690 AC_CONFIG_FILES([nt/emacs.rc nt/emacsclient.rc]) 4693 AC_CONFIG_FILES([nt/emacs.rc nt/emacsclient.rc])
4691 ;; 4694fi
4692esac 4695
4693 4696
4694XMENU_OBJ= 4697XMENU_OBJ=
4695XOBJ= 4698XOBJ=