|
From: Martin R. <ru...@us...> - 2004-08-07 00:27:40
|
Update of /cvsroot/foo/fooelk In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv13529 Modified Files: configure.ac Log Message: added gc-type and heapsize configure-time options Index: configure.ac =================================================================== RCS file: /cvsroot/foo/fooelk/configure.ac,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** configure.ac 6 Aug 2004 20:56:42 -0000 1.1.1.1 --- configure.ac 7 Aug 2004 00:27:31 -0000 1.2 *************** *** 83,88 **** # check for libedit/libreadline AC_ARG_ENABLE(gnu-readline, ! [ --enable-gnu-readline force gnu readline support (GPL license!!!) ! ],, enable_gnu_readline=no) --- 83,87 ---- # check for libedit/libreadline AC_ARG_ENABLE(gnu-readline, ! AC_HELP_STRING([--enable-gnu-readline], [force gnu readline support (GPL license!!!)]),, enable_gnu_readline=no) *************** *** 482,490 **** # Do you want to use the generational garbage collector? If not, the # stop-and-copy garbage collector will be used. ! AC_DEFINE(GENERATIONAL_GC, 1, [FIXME HARD]) # The default heap size of the Scheme interpreter in KBytes (if the # stop-and-copy garbage collector is used). ! AC_DEFINE(HEAP_SIZE, 65536, [FIXME HARD]) # The directory where all files are installed by running "make install". We --- 481,499 ---- # Do you want to use the generational garbage collector? If not, the # stop-and-copy garbage collector will be used. ! AC_ARG_WITH(gc-type, ! AC_HELP_STRING([--with-gc-type=TYPE], [use 'generational' or 'stopncopy' garbage collector (generational)]),, ! [with_gc_type=generational]) ! ! if test "x${with_gc_type}" = "xgenerational" ; then ! AC_DEFINE(GENERATIONAL_GC, 1, [use the generational garbage collector]) ! fi # The default heap size of the Scheme interpreter in KBytes (if the # stop-and-copy garbage collector is used). ! AC_ARG_WITH(default-heapsize, ! AC_HELP_STRING([--with-default-heapsize=SIZE], [default heapsize of the interpreter for stop-and-copy garbage collector (4096k)]),, ! [with_default_heapsize=4096]) ! ! AC_DEFINE_UNQUOTED(HEAP_SIZE, ${with_default_heapsize}, [default heap size of the interpreter for stop-and-copy garbage collector]) # The directory where all files are installed by running "make install". We *************** *** 665,669 **** Motif support: ${ac_cv_my_have_motif} readline support: ${ac_cv_my_have_readline} build documentation: ${ac_cv_my_have_groff} EOF - --- 674,679 ---- Motif support: ${ac_cv_my_have_motif} readline support: ${ac_cv_my_have_readline} + use garbage colllector: ${with_gc_type} + default heap size: ${with_default_heapsize} build documentation: ${ac_cv_my_have_groff} EOF |