aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-04-28 00:20:39 -0700
committerGlenn Morris2010-04-28 00:20:39 -0700
commitc40f944923911b5d7c8f26814a97e2802d4e047c (patch)
treec6e352aeeecfb5878edbe7307e9d7e88e847b168
parent658f86ca324cf730f343a6d87597df639282b53b (diff)
downloademacs-c40f944923911b5d7c8f26814a97e2802d4e047c.tar.gz
emacs-c40f944923911b5d7c8f26814a97e2802d4e047c.zip
Define CYGWIN_OBJ with configure, not cpp.
* configure.in (CYGWIN_OBJ): New output variable. * src/Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
-rw-r--r--ChangeLog2
-rw-r--r--configure.in3
-rw-r--r--src/ChangeLog2
-rw-r--r--src/Makefile.in7
4 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index f3dff879491..464049bb0da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
12010-04-28 Glenn Morris <rgm@gnu.org> 12010-04-28 Glenn Morris <rgm@gnu.org>
2 2
3 * configure.in (CYGWIN_OBJ): New output variable.
4
3 * configure.in (GPM_MOUSE_SUPPORT): New output variable. 5 * configure.in (GPM_MOUSE_SUPPORT): New output variable.
4 6
5 * configure.in (FONT_OBJ): New output variable. 7 * configure.in (FONT_OBJ): New output variable.
diff --git a/configure.in b/configure.in
index f283290f580..e3f14b3282b 100644
--- a/configure.in
+++ b/configure.in
@@ -2928,6 +2928,9 @@ if test "${REL_ALLOC}" = "yes" ; then
2928 buffer space.]) 2928 buffer space.])
2929fi 2929fi
2930 2930
2931CYGWIN_OBJ=
2932test "$opsys" = "cygwin" && CYGWIN_OBJ="sheap.o"
2933AC_SUBST(CYGWIN_OBJ)
2931 2934
2932AH_TOP([/* GNU Emacs site configuration template file. 2935AH_TOP([/* GNU Emacs site configuration template file.
2933 Copyright (C) 1988, 1993, 1994, 1999, 2000, 2001, 2002, 2004, 2005, 2936 Copyright (C) 1988, 1993, 1994, 1999, 2000, 2001, 2002, 2004, 2005,
diff --git a/src/ChangeLog b/src/ChangeLog
index 4c974495a2f..d8c927b89e2 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12010-04-28 Glenn Morris <rgm@gnu.org> 12010-04-28 Glenn Morris <rgm@gnu.org>
2 2
3 * Makefile.in (CYGWIN_OBJ): Set with configure, not cpp.
4
3 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure. 5 * Makefile.in (GPM_MOUSE_SUPPORT): New, set by configure.
4 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT. 6 (MOUSE_SUPPORT) [!HAVE_MOUSE]: Use $GPM_MOUSE_SUPPORT.
5 7
diff --git a/src/Makefile.in b/src/Makefile.in
index ca6a6acd955..bb45ad0b19d 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -106,6 +106,9 @@ RSVG_CFLAGS= @RSVG_CFLAGS@
106## widget.o if USE_X_TOOLKIT, otherwise empty. 106## widget.o if USE_X_TOOLKIT, otherwise empty.
107WIDGET_OBJ=@WIDGET_OBJ@ 107WIDGET_OBJ=@WIDGET_OBJ@
108 108
109## sheap.o if CYGWIN, otherwise empty.
110CYGWIN_OBJ=@CYGWIN_OBJ@
111
109NS_OBJ=@NS_OBJ@ 112NS_OBJ=@NS_OBJ@
110NS_SUPPORT=@NS_SUPPORT@ 113NS_SUPPORT=@NS_SUPPORT@
111 114
@@ -368,10 +371,6 @@ MSDOS_OBJ = dosfns.o msdos.o w16select.o xmenu.o termcap.o
368#endif 371#endif
369#endif 372#endif
370 373
371#ifdef CYGWIN
372CYGWIN_OBJ = sheap.o
373#endif
374
375#ifdef HAVE_NS 374#ifdef HAVE_NS
376ns_appdir=@ns_appdir@/ 375ns_appdir=@ns_appdir@/
377ns_appbindir=@ns_appbindir@/ 376ns_appbindir=@ns_appbindir@/