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 | |
| 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.
| -rw-r--r-- | ChangeLog | 3 | ||||
| -rwxr-xr-x | configure | 4 | ||||
| -rw-r--r-- | configure.in | 4 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/Makefile.in | 8 |
5 files changed, 17 insertions, 7 deletions
| @@ -1,5 +1,8 @@ | |||
| 1 | 2010-04-30 Glenn Morris <rgm@gnu.org> | 1 | 2010-04-30 Glenn Morris <rgm@gnu.org> |
| 2 | 2 | ||
| 3 | * configure.in (OTHER_OBJ): Always include vm-limit.o on Cygwin. | ||
| 4 | Elsewhere, maybe include it. | ||
| 5 | |||
| 3 | * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS. | 6 | * configure.in (TOOLKIT_LIBW) [HAVE_GTK]: Set to $GTK_LIBS. |
| 4 | (OLDXMENU, LIBXMENU): New output variables. | 7 | (OLDXMENU, LIBXMENU): New output variables. |
| 5 | 8 | ||
| @@ -26170,10 +26170,10 @@ OTHER_OBJ="\$(gmallocobj) \$(rallocobj)" | |||
| 26170 | if test "$opsys" = "cygwin"; then | 26170 | if test "$opsys" = "cygwin"; then |
| 26171 | CYGWIN_OBJ="sheap.o" | 26171 | CYGWIN_OBJ="sheap.o" |
| 26172 | ## Cygwin differs because of its unexec(). | 26172 | ## Cygwin differs because of its unexec(). |
| 26173 | OTHER_OBJ="$OTHER_OBJ lastfile.o" | 26173 | OTHER_OBJ="$OTHER_OBJ lastfile.o vm-limit.o" |
| 26174 | else | 26174 | else |
| 26175 | CYGWIN_OBJ= | 26175 | CYGWIN_OBJ= |
| 26176 | OTHER_OBJ="lastfile.o $OTHER_OBJ" | 26176 | OTHER_OBJ="lastfile.o $OTHER_OBJ \$(vmlimitobj)" |
| 26177 | fi | 26177 | fi |
| 26178 | 26178 | ||
| 26179 | 26179 | ||
diff --git a/configure.in b/configure.in index ce232b18d35..4ad31ce4b59 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -2956,10 +2956,10 @@ OTHER_OBJ="\$(gmallocobj) \$(rallocobj)" | |||
| 2956 | if test "$opsys" = "cygwin"; then | 2956 | if test "$opsys" = "cygwin"; then |
| 2957 | CYGWIN_OBJ="sheap.o" | 2957 | CYGWIN_OBJ="sheap.o" |
| 2958 | ## Cygwin differs because of its unexec(). | 2958 | ## Cygwin differs because of its unexec(). |
| 2959 | OTHER_OBJ="$OTHER_OBJ lastfile.o" | 2959 | OTHER_OBJ="$OTHER_OBJ lastfile.o vm-limit.o" |
| 2960 | else | 2960 | else |
| 2961 | CYGWIN_OBJ= | 2961 | CYGWIN_OBJ= |
| 2962 | OTHER_OBJ="lastfile.o $OTHER_OBJ" | 2962 | OTHER_OBJ="lastfile.o $OTHER_OBJ \$(vmlimitobj)" |
| 2963 | fi | 2963 | fi |
| 2964 | AC_SUBST(CYGWIN_OBJ) | 2964 | AC_SUBST(CYGWIN_OBJ) |
| 2965 | AC_SUBST(OTHER_OBJ) | 2965 | AC_SUBST(OTHER_OBJ) |
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 \ |