diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/Makefile.in | 20 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 91c413947ec..df37eed392b 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-11-26 Richard M. Stallman <rms@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (mallocobj): Simplify logic using auxiliary vars. | ||
| 4 | |||
| 1 | 2001-11-25 Stefan Monnier <monnier@cs.yale.edu> | 5 | 2001-11-25 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 6 | ||
| 3 | * textprop.c (set_text_properties_1): Clearly mark that the | 7 | * textprop.c (set_text_properties_1): Clearly mark that the |
diff --git a/src/Makefile.in b/src/Makefile.in index b20ec7d0add..d417c18cfa0 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -570,19 +570,15 @@ termcapobj = tparam.o | |||
| 570 | 570 | ||
| 571 | #ifndef SYSTEM_MALLOC | 571 | #ifndef SYSTEM_MALLOC |
| 572 | 572 | ||
| 573 | #ifdef DOUG_LEA_MALLOC | 573 | #ifndef DOUG_LEA_MALLOC |
| 574 | #ifdef REL_ALLOC | 574 | gmallocobj = gmalloc.o |
| 575 | mallocobj = ralloc.o vm-limit.o | 575 | #endif |
| 576 | #else /* ! defined (REL_ALLOC) */ | 576 | |
| 577 | mallocobj = vm-limit.o | ||
| 578 | #endif /* ! defined (REL_ALLOC) */ | ||
| 579 | #else /* ! defined (DOUG_LEA_MALLOC) */ | ||
| 580 | #ifdef REL_ALLOC | 577 | #ifdef REL_ALLOC |
| 581 | mallocobj = gmalloc.o ralloc.o vm-limit.o | 578 | rallocobj = ralloc.o |
| 582 | #else /* ! defined (REL_ALLOC) */ | 579 | #endif |
| 583 | mallocobj = gmalloc.o vm-limit.o | 580 | |
| 584 | #endif /* ! defined (REL_ALLOC) */ | 581 | mallocobj = $(gmallocobj) $(rallocobj) vm-limit.o |
| 585 | #endif /* ! defined (DOUG_LEA_MALLOC) */ | ||
| 586 | 582 | ||
| 587 | #endif /* SYSTEM_MALLOC */ | 583 | #endif /* SYSTEM_MALLOC */ |
| 588 | 584 | ||