diff options
| author | Glenn Morris | 2010-05-17 19:54:25 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-17 19:54:25 -0700 |
| commit | 4f91d9c864810ec8873d77d20409261339b01e7c (patch) | |
| tree | cb2d4ee25d519c0e1bafe75706ac8bb08e4e2d40 | |
| parent | 51603dabe01cdc5855350ad48f5c58691db36ce1 (diff) | |
| download | emacs-4f91d9c864810ec8873d77d20409261339b01e7c.tar.gz emacs-4f91d9c864810ec8873d77d20409261339b01e7c.zip | |
Regenerate configure.
| -rwxr-xr-x | configure | 29 |
1 files changed, 27 insertions, 2 deletions
| @@ -724,6 +724,8 @@ NS_OBJ | |||
| 724 | NS_SUPPORT | 724 | NS_SUPPORT |
| 725 | LIB_STANDARD | 725 | LIB_STANDARD |
| 726 | HAVE_XSERVER | 726 | HAVE_XSERVER |
| 727 | GMALLOC_OBJ | ||
| 728 | VMLIMIT_OBJ | ||
| 727 | RSVG_CFLAGS | 729 | RSVG_CFLAGS |
| 728 | RSVG_LIBS | 730 | RSVG_LIBS |
| 729 | GTK_CFLAGS | 731 | GTK_CFLAGS |
| @@ -810,6 +812,7 @@ OLDXMENU | |||
| 810 | LIBXMENU | 812 | LIBXMENU |
| 811 | LIBX_OTHER | 813 | LIBX_OTHER |
| 812 | OLDXMENU_DEPS | 814 | OLDXMENU_DEPS |
| 815 | RALLOC_OBJ | ||
| 813 | CYGWIN_OBJ | 816 | CYGWIN_OBJ |
| 814 | PRE_ALLOC_OBJ | 817 | PRE_ALLOC_OBJ |
| 815 | POST_ALLOC_OBJ | 818 | POST_ALLOC_OBJ |
| @@ -10513,11 +10516,20 @@ $as_echo "$emacs_cv_var___after_morecore_hook" >&6; } | |||
| 10513 | if test $emacs_cv_var___after_morecore_hook = no; then | 10516 | if test $emacs_cv_var___after_morecore_hook = no; then |
| 10514 | doug_lea_malloc=no | 10517 | doug_lea_malloc=no |
| 10515 | fi | 10518 | fi |
| 10519 | |||
| 10516 | if test "${system_malloc}" = "yes"; then | 10520 | if test "${system_malloc}" = "yes"; then |
| 10517 | GNU_MALLOC=no | 10521 | GNU_MALLOC=no |
| 10518 | GNU_MALLOC_reason=" | 10522 | GNU_MALLOC_reason=" |
| 10519 | (The GNU allocators don't work with this system configuration.)" | 10523 | (The GNU allocators don't work with this system configuration.)" |
| 10524 | GMALLOC_OBJ= | ||
| 10525 | VMLIMIT_OBJ= | ||
| 10526 | else | ||
| 10527 | test "$doug_lea_malloc" != "yes" && GMALLOC_OBJ=gmalloc.o | ||
| 10528 | VMLIMIT_OBJ=vm-limit.o | ||
| 10520 | fi | 10529 | fi |
| 10530 | |||
| 10531 | |||
| 10532 | |||
| 10521 | if test "$doug_lea_malloc" = "yes" ; then | 10533 | if test "$doug_lea_malloc" = "yes" ; then |
| 10522 | if test "$GNU_MALLOC" = yes ; then | 10534 | if test "$GNU_MALLOC" = yes ; then |
| 10523 | GNU_MALLOC_reason=" | 10535 | GNU_MALLOC_reason=" |
| @@ -10528,6 +10540,14 @@ cat >>confdefs.h <<\_ACEOF | |||
| 10528 | #define DOUG_LEA_MALLOC 1 | 10540 | #define DOUG_LEA_MALLOC 1 |
| 10529 | _ACEOF | 10541 | _ACEOF |
| 10530 | 10542 | ||
| 10543 | |||
| 10544 | ## Use mmap directly for allocating larger buffers. | ||
| 10545 | ## FIXME this comes from src/s/{gnu,gnu-linux}.h: | ||
| 10546 | ## #ifdef DOUG_LEA_MALLOC; #undef REL_ALLOC; #endif | ||
| 10547 | ## Does the AC_FUNC_MMAP test below make this check unecessary? | ||
| 10548 | case "$opsys" in | ||
| 10549 | gnu*) REL_ALLOC=no ;; | ||
| 10550 | esac | ||
| 10531 | fi | 10551 | fi |
| 10532 | 10552 | ||
| 10533 | if test x"${REL_ALLOC}" = x; then | 10553 | if test x"${REL_ALLOC}" = x; then |
| @@ -26520,6 +26540,7 @@ cat >>confdefs.h <<\_ACEOF | |||
| 26520 | _ACEOF | 26540 | _ACEOF |
| 26521 | 26541 | ||
| 26522 | fi | 26542 | fi |
| 26543 | |||
| 26523 | if test "${GNU_MALLOC}" = "yes" ; then | 26544 | if test "${GNU_MALLOC}" = "yes" ; then |
| 26524 | 26545 | ||
| 26525 | cat >>confdefs.h <<\_ACEOF | 26546 | cat >>confdefs.h <<\_ACEOF |
| @@ -26527,12 +26548,16 @@ cat >>confdefs.h <<\_ACEOF | |||
| 26527 | _ACEOF | 26548 | _ACEOF |
| 26528 | 26549 | ||
| 26529 | fi | 26550 | fi |
| 26551 | |||
| 26552 | RALLOC_OBJ= | ||
| 26530 | if test "${REL_ALLOC}" = "yes" ; then | 26553 | if test "${REL_ALLOC}" = "yes" ; then |
| 26531 | 26554 | ||
| 26532 | cat >>confdefs.h <<\_ACEOF | 26555 | cat >>confdefs.h <<\_ACEOF |
| 26533 | #define REL_ALLOC 1 | 26556 | #define REL_ALLOC 1 |
| 26534 | _ACEOF | 26557 | _ACEOF |
| 26535 | 26558 | ||
| 26559 | |||
| 26560 | test "$system_malloc" != "yes" && RALLOC_OBJ=ralloc.o | ||
| 26536 | fi | 26561 | fi |
| 26537 | 26562 | ||
| 26538 | 26563 | ||
| @@ -26540,11 +26565,11 @@ if test "$opsys" = "cygwin"; then | |||
| 26540 | CYGWIN_OBJ="sheap.o" | 26565 | CYGWIN_OBJ="sheap.o" |
| 26541 | ## Cygwin differs because of its unexec(). | 26566 | ## Cygwin differs because of its unexec(). |
| 26542 | PRE_ALLOC_OBJ= | 26567 | PRE_ALLOC_OBJ= |
| 26543 | POST_ALLOC_OBJ="lastfile.o vm-limit.o" | 26568 | POST_ALLOC_OBJ=lastfile.o |
| 26544 | else | 26569 | else |
| 26545 | CYGWIN_OBJ= | 26570 | CYGWIN_OBJ= |
| 26546 | PRE_ALLOC_OBJ=lastfile.o | 26571 | PRE_ALLOC_OBJ=lastfile.o |
| 26547 | POST_ALLOC_OBJ="\$(vmlimitobj)" | 26572 | POST_ALLOC_OBJ= |
| 26548 | fi | 26573 | fi |
| 26549 | 26574 | ||
| 26550 | 26575 | ||