diff options
| author | Ken Brown | 2013-04-08 22:38:56 -0400 |
|---|---|---|
| committer | Ken Brown | 2013-04-08 22:38:56 -0400 |
| commit | ba3b2d88d847cf1669f3f0c340f8864c77fe59de (patch) | |
| tree | e11777fad29943b20f291b44f926405c2f5a022b | |
| parent | 7ffe7ef6ba59f3ac5728dc7b782de5082e22aad9 (diff) | |
| download | emacs-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-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.ac | 2 | ||||
| -rw-r--r-- | nt/ChangeLog | 5 | ||||
| -rw-r--r-- | nt/emacs.rc | 2 |
4 files changed, 13 insertions, 2 deletions
| @@ -1,3 +1,9 @@ | |||
| 1 | 2013-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 | |||
| 1 | 2013-04-07 Paul Eggert <eggert@cs.ucla.edu> | 7 | 2013-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" |
| 1531 | fi | 1531 | fi |
| 1532 | AC_SUBST(W32_OBJ) | 1532 | AC_SUBST(W32_OBJ) |
| 1533 | AC_SUBST(W32_LIBS) | 1533 | AC_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 @@ | |||
| 1 | 2013-04-09 Ken Brown <kbrown@cornell.edu> | ||
| 2 | |||
| 3 | * emacs.rc: Use 64-bit manifest for 64-bit Cygwin build. | ||
| 4 | (Bug#12993) | ||
| 5 | |||
| 1 | 2013-04-01 Eli Zaretskii <eliz@gnu.org> | 6 | 2013-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 @@ | |||
| 1 | Emacs ICON icons/emacs.ico | 1 | Emacs ICON icons/emacs.ico |
| 2 | 32649 CURSOR icons/hand.cur | 2 | 32649 CURSOR icons/hand.cur |
| 3 | #ifdef WIN64 | 3 | #if defined (WIN64) || defined (__x86_64__) |
| 4 | 1 24 "emacs-x64.manifest" | 4 | 1 24 "emacs-x64.manifest" |
| 5 | #else | 5 | #else |
| 6 | 1 24 "emacs-x86.manifest" | 6 | 1 24 "emacs-x86.manifest" |