aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2010-04-30 20:04:51 -0700
committerGlenn Morris2010-04-30 20:04:51 -0700
commit7acac9f4ce1b49c8d953b80b83c4ecd7dd919676 (patch)
treead5b4475397bed5fbbb412bc39907bc2ea839db6 /src
parent45841e65c92834e743320ca54d14dd0887671c25 (diff)
downloademacs-7acac9f4ce1b49c8d953b80b83c4ecd7dd919676.tar.gz
emacs-7acac9f4ce1b49c8d953b80b83c4ecd7dd919676.zip
Rework previous autoconf changes, hopefully to make clearer.
* configure.in (OTHER_OBJ): Remove. (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New output variables. * configure: Regenerate. * src/Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null, for clarity. (OTHER_OBJ): Remove. (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure. (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog8
-rw-r--r--src/Makefile.in12
2 files changed, 17 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 3f6a45a4118..e5c6a0b23b7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,11 @@
12010-05-01 Glenn Morris <rgm@gnu.org>
2
3 * Makefile.in (gmallocobj, rallocobj, vmlimitobj): Initialize to null,
4 for clarity.
5 (OTHER_OBJ): Remove.
6 (PRE_ALLOC_OBJ, POST_ALLOC_OBJ): New, set by configure.
7 (otherobj): Use PRE_ALLOC_OBJ, POST_ALLOC_OBJ rather than OTHER_OBJ.
8
12010-05-01 Karel Klíč <kklic@redhat.com> 92010-05-01 Karel Klíč <kklic@redhat.com>
2 10
3 * fileio.c (Ffile_selinux_context): Context functions may return null. 11 * fileio.c (Ffile_selinux_context): Context functions may return null.
diff --git a/src/Makefile.in b/src/Makefile.in
index cc7b1477d35..e221c4a5934 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -411,7 +411,9 @@ termcapobj = terminfo.o
411termcapobj = tparam.o 411termcapobj = tparam.o
412#endif /* ! defined (TERMINFO) */ 412#endif /* ! defined (TERMINFO) */
413 413
414 414gmallocobj =
415rallocobj =
416vmlimitobj =
415#ifndef SYSTEM_MALLOC 417#ifndef SYSTEM_MALLOC
416#ifndef DOUG_LEA_MALLOC 418#ifndef DOUG_LEA_MALLOC
417gmallocobj = gmalloc.o 419gmallocobj = gmalloc.o
@@ -424,10 +426,14 @@ rallocobj = ralloc.o
424vmlimitobj = vm-limit.o 426vmlimitobj = vm-limit.o
425#endif /* !SYSTEM_MALLOC */ 427#endif /* !SYSTEM_MALLOC */
426 428
427OTHER_OBJ=@OTHER_OBJ@ 429## Empty on Cygwin, lastfile.o elsewhere.
430PRE_ALLOC_OBJ=@PRE_ALLOC_OBJ@
431## lastfile.o vm-limit.o on Cygwin, $vmlimitobj elsewhere.
432POST_ALLOC_OBJ=@POST_ALLOC_OBJ@
428 433
429/* List of object files that make-docfile should not be told about. */ 434/* List of object files that make-docfile should not be told about. */
430otherobj= $(termcapobj) $(OTHER_OBJ) $(WIDGET_OBJ) $(LIBOBJS) 435otherobj= $(termcapobj) $(PRE_ALLOC_OBJ) $(gmallocobj) $(rallocobj) \
436 $(POST_ALLOC_OBJ) $(WIDGET_OBJ) $(LIBOBJS)
431 437
432#ifdef HAVE_MOUSE 438#ifdef HAVE_MOUSE
433#define MOUSE_SUPPORT ${lispsource}mouse.elc \ 439#define MOUSE_SUPPORT ${lispsource}mouse.elc \