]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix icon for the cygw32 build on 64-bit Cygwin. (Bug#12993)
authorKen Brown <kbrown@cornell.edu>
Tue, 9 Apr 2013 02:38:56 +0000 (22:38 -0400)
committerKen Brown <kbrown@cornell.edu>
Tue, 9 Apr 2013 02:38:56 +0000 (22:38 -0400)
* 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.

ChangeLog
configure.ac
nt/ChangeLog
nt/emacs.rc

index 2dd796962d7a4348f5ffe53f081f1471a4f886a0..a2ebd3e912be84e1df39bfaffcfcf5cc40a36b2c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2013-04-09  Ken Brown  <kbrown@cornell.edu>
+
+       * configure.ac (W32_RES_LINK): Remove unneeded linker directive
+       `-Wl,-bpe-i386', which is confusing in the 64-bit case.
+       (Bug#12993)
+
 2013-04-07  Paul Eggert  <eggert@cs.ucla.edu>
 
        Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
index 2d8c4c3473d65168f11ea95d510301d863f0d04b..71e35ec8ff74ebc0cd025a0bafe55d219e2b54b5 100644 (file)
@@ -1527,7 +1527,7 @@ if test "${with_w32}" != no; then
   W32_RES="emacs.res"
   # Tell the linker that emacs.res is an object (which we compile from
   # the rc file), not a linker script.
-  W32_RES_LINK="-Wl,-bpe-i386 -Wl,emacs.res"
+  W32_RES_LINK="-Wl,emacs.res"
 fi
 AC_SUBST(W32_OBJ)
 AC_SUBST(W32_LIBS)
index 3d2c0e172ffe724501a100e022a1824236245259..acc74488424ff6b93bf468e377c79a44023d9f8d 100644 (file)
@@ -1,3 +1,8 @@
+2013-04-09  Ken Brown  <kbrown@cornell.edu>
+
+       * emacs.rc: Use 64-bit manifest for 64-bit Cygwin build.
+       (Bug#12993)
+
 2013-04-01  Eli Zaretskii  <eliz@gnu.org>
 
        * README: A better documentation of ddeclient.exe.
index d2703c45869c21bd8715bfdea387cbe4984a5543..81d283f70afb61a6d9a36ef5edd78aa042330a2e 100644 (file)
@@ -1,6 +1,6 @@
 Emacs ICON   icons/emacs.ico
 32649 CURSOR icons/hand.cur
-#ifdef WIN64
+#if defined (WIN64) || defined (__x86_64__)
 1 24 "emacs-x64.manifest"
 #else
 1 24 "emacs-x86.manifest"