aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Brown2013-04-08 22:38:56 -0400
committerKen Brown2013-04-08 22:38:56 -0400
commitba3b2d88d847cf1669f3f0c340f8864c77fe59de (patch)
treee11777fad29943b20f291b44f926405c2f5a022b
parent7ffe7ef6ba59f3ac5728dc7b782de5082e22aad9 (diff)
downloademacs-ba3b2d88d847cf1669f3f0c340f8864c77fe59de.tar.gz
emacs-ba3b2d88d847cf1669f3f0c340f8864c77fe59de.zip
Fix icon for the cygw32 build on 64-bit Cygwin. (Bug#12993)
* nt/emacs.rc: Use 64-bit manifest for 64-bit Cygwin build. * configure.ac (W32_RES_LINK): Remove unnecessary linker directive `-Wl,-bpe-i386', which is confusing in the 64-bit case.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
-rw-r--r--nt/ChangeLog5
-rw-r--r--nt/emacs.rc2
4 files changed, 13 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 2dd796962d7..a2ebd3e912b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
12013-04-09 Ken Brown <kbrown@cornell.edu>
2
3 * configure.ac (W32_RES_LINK): Remove unneeded linker directive
4 `-Wl,-bpe-i386', which is confusing in the 64-bit case.
5 (Bug#12993)
6
12013-04-07 Paul Eggert <eggert@cs.ucla.edu> 72013-04-07 Paul Eggert <eggert@cs.ucla.edu>
2 8
3 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783). 9 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
diff --git a/configure.ac b/configure.ac
index 2d8c4c3473d..71e35ec8ff7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1527,7 +1527,7 @@ if test "${with_w32}" != no; then
1527 W32_RES="emacs.res" 1527 W32_RES="emacs.res"
1528 # Tell the linker that emacs.res is an object (which we compile from 1528 # Tell the linker that emacs.res is an object (which we compile from
1529 # the rc file), not a linker script. 1529 # the rc file), not a linker script.
1530 W32_RES_LINK="-Wl,-bpe-i386 -Wl,emacs.res" 1530 W32_RES_LINK="-Wl,emacs.res"
1531fi 1531fi
1532AC_SUBST(W32_OBJ) 1532AC_SUBST(W32_OBJ)
1533AC_SUBST(W32_LIBS) 1533AC_SUBST(W32_LIBS)
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 3d2c0e172ff..acc74488424 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,8 @@
12013-04-09 Ken Brown <kbrown@cornell.edu>
2
3 * emacs.rc: Use 64-bit manifest for 64-bit Cygwin build.
4 (Bug#12993)
5
12013-04-01 Eli Zaretskii <eliz@gnu.org> 62013-04-01 Eli Zaretskii <eliz@gnu.org>
2 7
3 * README: A better documentation of ddeclient.exe. 8 * README: A better documentation of ddeclient.exe.
diff --git a/nt/emacs.rc b/nt/emacs.rc
index d2703c45869..81d283f70af 100644
--- a/nt/emacs.rc
+++ b/nt/emacs.rc
@@ -1,6 +1,6 @@
1Emacs ICON icons/emacs.ico 1Emacs ICON icons/emacs.ico
232649 CURSOR icons/hand.cur 232649 CURSOR icons/hand.cur
3#ifdef WIN64 3#if defined (WIN64) || defined (__x86_64__)
41 24 "emacs-x64.manifest" 41 24 "emacs-x64.manifest"
5#else 5#else
61 24 "emacs-x86.manifest" 61 24 "emacs-x86.manifest"