aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKen Brown2014-04-09 17:16:37 -0400
committerKen Brown2014-04-09 17:16:37 -0400
commit0cccc183d7530d342e7970f4544cdf70e3327cb6 (patch)
tree53838100f6169119fb7d3c7edcea5826f9a1e6c5
parent50c9a9b8a871ce281b43a196bd912f3d2fdda5fa (diff)
downloademacs-0cccc183d7530d342e7970f4544cdf70e3327cb6.tar.gz
emacs-0cccc183d7530d342e7970f4544cdf70e3327cb6.zip
Revert most of the recent change involving manifests on Cygwin. (Bug#17176)
* configure.ac (EMACS_MANIFEST): Revert last change (but leave UPDATE_MANIFEST empty). * nt/emacs.rc: Revert last change. * src/Makefile.in (EMACS_MANIFEST): Revert last change.
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac8
-rw-r--r--nt/ChangeLog4
-rw-r--r--nt/emacs.rc4
-rw-r--r--src/ChangeLog4
-rw-r--r--src/Makefile.in2
6 files changed, 19 insertions, 8 deletions
diff --git a/ChangeLog b/ChangeLog
index 0060060b713..e55beb896b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
12014-04-09 Ken Brown <kbrown@cornell.edu>
2
3 * configure.ac (EMACS_MANIFEST): Revert last change (but leave
4 UPDATE_MANIFEST empty).
5
12014-04-03 Ken Brown <kbrown@cornell.edu> 62014-04-03 Ken Brown <kbrown@cornell.edu>
2 7
3 * configure.ac (EMACS_MANIFEST, UPDATE_MANIFEST): Leave these 8 * configure.ac (EMACS_MANIFEST, UPDATE_MANIFEST): Leave these
diff --git a/configure.ac b/configure.ac
index 086bd7d4bdf..f7675fb4056 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1834,6 +1834,10 @@ if test "${HAVE_W32}" = "yes"; then
1834 W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o" 1834 W32_OBJ="w32fns.o w32menu.o w32reg.o w32font.o w32term.o"
1835 W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o" 1835 W32_OBJ="$W32_OBJ w32xfns.o w32select.o w32uniscribe.o"
1836 EMACSRES="emacs.res" 1836 EMACSRES="emacs.res"
1837 case "$canonical" in
1838 x86_64-*-*) EMACS_MANIFEST="emacs-x64.manifest" ;;
1839 *) EMACS_MANIFEST="emacs-x86.manifest" ;;
1840 esac
1837 if test "${opsys}" = "cygwin"; then 1841 if test "${opsys}" = "cygwin"; then
1838 W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32" 1842 W32_LIBS="$W32_LIBS -lkernel32 -luser32 -lgdi32 -lole32 -lcomdlg32"
1839 W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool" 1843 W32_LIBS="$W32_LIBS -lusp10 -lcomctl32 -lwinspool"
@@ -1841,10 +1845,6 @@ if test "${HAVE_W32}" = "yes"; then
1841 # the rc file), not a linker script. 1845 # the rc file), not a linker script.
1842 W32_RES_LINK="-Wl,emacs.res" 1846 W32_RES_LINK="-Wl,emacs.res"
1843 else 1847 else
1844 case "$canonical" in
1845 x86_64-*-*) EMACS_MANIFEST="emacs-x64.manifest" ;;
1846 *) EMACS_MANIFEST="emacs-x86.manifest" ;;
1847 esac
1848 UPDATE_MANIFEST=update-game-score.exe.manifest 1848 UPDATE_MANIFEST=update-game-score.exe.manifest
1849 W32_OBJ="$W32_OBJ w32.o w32console.o w32heap.o w32inevt.o w32proc.o" 1849 W32_OBJ="$W32_OBJ w32.o w32console.o w32heap.o w32inevt.o w32proc.o"
1850 W32_LIBS="$W32_LIBS -lwinmm -lgdi32 -lcomdlg32" 1850 W32_LIBS="$W32_LIBS -lwinmm -lgdi32 -lcomdlg32"
diff --git a/nt/ChangeLog b/nt/ChangeLog
index 8e2875805dd..38e5512043d 100644
--- a/nt/ChangeLog
+++ b/nt/ChangeLog
@@ -1,3 +1,7 @@
12014-04-09 Ken Brown <kbrown@cornell.edu>
2
3 * emacs.rc: Revert last change.
4
12014-04-03 Ken Brown <kbrown@cornell.edu> 52014-04-03 Ken Brown <kbrown@cornell.edu>
2 6
3 * emacs.rc: Don't use manifest on Cygwin. (Bug#17176) 7 * emacs.rc: Don't use manifest on Cygwin. (Bug#17176)
diff --git a/nt/emacs.rc b/nt/emacs.rc
index fa019b4d98a..92c303ad4ef 100644
--- a/nt/emacs.rc
+++ b/nt/emacs.rc
@@ -1,12 +1,10 @@
1Emacs ICON icons/emacs.ico 1Emacs ICON icons/emacs.ico
232649 CURSOR icons/hand.cur 232649 CURSOR icons/hand.cur
3#ifndef __CYGWIN__ 3#if defined (WIN64) || defined (__x86_64__)
4#ifdef WIN64
51 24 "emacs-x64.manifest" 41 24 "emacs-x64.manifest"
6#else 5#else
71 24 "emacs-x86.manifest" 61 24 "emacs-x86.manifest"
8#endif 7#endif
9#endif
10 8
11#ifndef VS_VERSION_INFO 9#ifndef VS_VERSION_INFO
12#define VS_VERSION_INFO 1 10#define VS_VERSION_INFO 1
diff --git a/src/ChangeLog b/src/ChangeLog
index 7618fb202e0..e2c925f03d3 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12014-04-09 Ken Brown <kbrown@cornell.edu>
2
3 * Makefile.in (EMACS_MANIFEST): Revert last change.
4
12014-04-07 Stefan Monnier <monnier@iro.umontreal.ca> 52014-04-07 Stefan Monnier <monnier@iro.umontreal.ca>
2 6
3 * lisp.h (struct Lisp_Symbol): New bitfield `pinned'. 7 * lisp.h (struct Lisp_Symbol): New bitfield `pinned'.
diff --git a/src/Makefile.in b/src/Makefile.in
index 7e71d030279..388923596c9 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -259,7 +259,7 @@ W32_LIBS=@W32_LIBS@
259 259
260## emacs.res if HAVE_W32 260## emacs.res if HAVE_W32
261EMACSRES = @EMACSRES@ 261EMACSRES = @EMACSRES@
262## emacs-*.manifest if WINDOWSNT 262## emacs-*.manifest if HAVE_W32
263EMACS_MANIFEST = @EMACS_MANIFEST@ 263EMACS_MANIFEST = @EMACS_MANIFEST@
264## If HAVE_W32, compiler arguments for including 264## If HAVE_W32, compiler arguments for including
265## the resource file in the binary. 265## the resource file in the binary.