aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2010-05-17 19:54:25 -0700
committerGlenn Morris2010-05-17 19:54:25 -0700
commit4f91d9c864810ec8873d77d20409261339b01e7c (patch)
treecb2d4ee25d519c0e1bafe75706ac8bb08e4e2d40
parent51603dabe01cdc5855350ad48f5c58691db36ce1 (diff)
downloademacs-4f91d9c864810ec8873d77d20409261339b01e7c.tar.gz
emacs-4f91d9c864810ec8873d77d20409261339b01e7c.zip
Regenerate configure.
-rwxr-xr-xconfigure29
1 files changed, 27 insertions, 2 deletions
diff --git a/configure b/configure
index e4eb0514da1..5cc425413cd 100755
--- a/configure
+++ b/configure
@@ -724,6 +724,8 @@ NS_OBJ
724NS_SUPPORT 724NS_SUPPORT
725LIB_STANDARD 725LIB_STANDARD
726HAVE_XSERVER 726HAVE_XSERVER
727GMALLOC_OBJ
728VMLIMIT_OBJ
727RSVG_CFLAGS 729RSVG_CFLAGS
728RSVG_LIBS 730RSVG_LIBS
729GTK_CFLAGS 731GTK_CFLAGS
@@ -810,6 +812,7 @@ OLDXMENU
810LIBXMENU 812LIBXMENU
811LIBX_OTHER 813LIBX_OTHER
812OLDXMENU_DEPS 814OLDXMENU_DEPS
815RALLOC_OBJ
813CYGWIN_OBJ 816CYGWIN_OBJ
814PRE_ALLOC_OBJ 817PRE_ALLOC_OBJ
815POST_ALLOC_OBJ 818POST_ALLOC_OBJ
@@ -10513,11 +10516,20 @@ $as_echo "$emacs_cv_var___after_morecore_hook" >&6; }
10513if test $emacs_cv_var___after_morecore_hook = no; then 10516if test $emacs_cv_var___after_morecore_hook = no; then
10514 doug_lea_malloc=no 10517 doug_lea_malloc=no
10515fi 10518fi
10519
10516if test "${system_malloc}" = "yes"; then 10520if 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=
10526else
10527 test "$doug_lea_malloc" != "yes" && GMALLOC_OBJ=gmalloc.o
10528 VMLIMIT_OBJ=vm-limit.o
10520fi 10529fi
10530
10531
10532
10521if test "$doug_lea_malloc" = "yes" ; then 10533if 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
10531fi 10551fi
10532 10552
10533if test x"${REL_ALLOC}" = x; then 10553if test x"${REL_ALLOC}" = x; then
@@ -26520,6 +26540,7 @@ cat >>confdefs.h <<\_ACEOF
26520_ACEOF 26540_ACEOF
26521 26541
26522fi 26542fi
26543
26523if test "${GNU_MALLOC}" = "yes" ; then 26544if test "${GNU_MALLOC}" = "yes" ; then
26524 26545
26525cat >>confdefs.h <<\_ACEOF 26546cat >>confdefs.h <<\_ACEOF
@@ -26527,12 +26548,16 @@ cat >>confdefs.h <<\_ACEOF
26527_ACEOF 26548_ACEOF
26528 26549
26529fi 26550fi
26551
26552RALLOC_OBJ=
26530if test "${REL_ALLOC}" = "yes" ; then 26553if test "${REL_ALLOC}" = "yes" ; then
26531 26554
26532cat >>confdefs.h <<\_ACEOF 26555cat >>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
26536fi 26561fi
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
26544else 26569else
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=
26548fi 26573fi
26549 26574
26550 26575