aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2010-04-30 09:37:01 -0700
committerGlenn Morris2010-04-30 09:37:01 -0700
commit5a1bb006a3951ba7a721fb873855266dc2c75dcb (patch)
tree28c6508466b109b74affcf59fb6a7bdaaacd0df1 /src
parent210af04332d390f44e51d8fb4c9f981415d987cd (diff)
downloademacs-5a1bb006a3951ba7a721fb873855266dc2c75dcb.tar.gz
emacs-5a1bb006a3951ba7a721fb873855266dc2c75dcb.zip
Hopefully fix bug#6065.
* configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin. Elsewhere, maybe include it. * src/Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (OTHER_OBJ): Define as a separate variable, for clarity. * configure: Regenerate.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/Makefile.in8
2 files changed, 10 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 544e71504d2..08a4595e695 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12010-04-30 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (vmlimitobj) [!SYSTEM_MALLOC]: New variable. (Bug#6065)
4 (OTHER_OBJ): Define as a separate variable, for clarity.
5
12010-04-30 Jan Djärv <jan.h.d@swipnet.se> 62010-04-30 Jan Djärv <jan.h.d@swipnet.se>
2 7
3 * xsettings.c: include limits.h and update file comment. 8 * xsettings.c: include limits.h and update file comment.
diff --git a/src/Makefile.in b/src/Makefile.in
index 9d60e403cf1..cc7b1477d35 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -420,12 +420,14 @@ gmallocobj = gmalloc.o
420#ifdef REL_ALLOC 420#ifdef REL_ALLOC
421rallocobj = ralloc.o 421rallocobj = ralloc.o
422#endif 422#endif
423
424vmlimitobj = vm-limit.o
423#endif /* !SYSTEM_MALLOC */ 425#endif /* !SYSTEM_MALLOC */
424 426
427OTHER_OBJ=@OTHER_OBJ@
428
425/* List of object files that make-docfile should not be told about. */ 429/* List of object files that make-docfile should not be told about. */
426/* OTHER_OBJ = $(gmallocobj) $(rallocobj), with trailing/leading 430otherobj= $(termcapobj) $(OTHER_OBJ) $(WIDGET_OBJ) $(LIBOBJS)
427 lastfile.o on Cygwin/other. */
428otherobj= $(termcapobj) @OTHER_OBJ@ vm-limit.o $(WIDGET_OBJ) $(LIBOBJS)
429 431
430#ifdef HAVE_MOUSE 432#ifdef HAVE_MOUSE
431#define MOUSE_SUPPORT ${lispsource}mouse.elc \ 433#define MOUSE_SUPPORT ${lispsource}mouse.elc \