diff options
| author | Glenn Morris | 2010-04-30 09:37:01 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-04-30 09:37:01 -0700 |
| commit | 5a1bb006a3951ba7a721fb873855266dc2c75dcb (patch) | |
| tree | 28c6508466b109b74affcf59fb6a7bdaaacd0df1 /src | |
| parent | 210af04332d390f44e51d8fb4c9f981415d987cd (diff) | |
| download | emacs-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/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 8 |
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 @@ | |||
| 1 | 2010-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 | |||
| 1 | 2010-04-30 Jan Djärv <jan.h.d@swipnet.se> | 6 | 2010-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 |
| 421 | rallocobj = ralloc.o | 421 | rallocobj = ralloc.o |
| 422 | #endif | 422 | #endif |
| 423 | |||
| 424 | vmlimitobj = vm-limit.o | ||
| 423 | #endif /* !SYSTEM_MALLOC */ | 425 | #endif /* !SYSTEM_MALLOC */ |
| 424 | 426 | ||
| 427 | OTHER_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 | 430 | otherobj= $(termcapobj) $(OTHER_OBJ) $(WIDGET_OBJ) $(LIBOBJS) |
| 427 | lastfile.o on Cygwin/other. */ | ||
| 428 | otherobj= $(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 \ |