Branch: Tag:

2000-04-28

2000-04-28 05:42:24 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

make shared nodes the default, hope it works :)

Rev: src/configure.in:1.367

1: - AC_REVISION("$Id: configure.in,v 1.366 2000/04/19 17:58:02 grubba Exp $") + AC_REVISION("$Id: configure.in,v 1.367 2000/04/28 05:42:24 hubbe Exp $")   AC_INIT(interpret.c)   AC_CONFIG_HEADER(machine.h)   
541:   AC_ARG_WITH(compiler-trace,[ --with-compiler-trace enable tracing of the compiler],[AC_DEFINE(YYDEBUG)],[])   AC_ARG_WITH(security, [ --with-security enable internal pike security system],[AC_DEFINE(PIKE_SECURITY)],[])   AC_ARG_WITH(bignums, [ --without-bignums disable internal conversion to bignums],[],[with_bignums=yes]) - AC_ARG_WITH(shared-nodes,[ --with-shared-nodes enable the SHARED_NODES mode of the optimizer (EXPERIMENTAL)],[],[]) + AC_ARG_WITH(shared-nodes,[ --without-shared-nodes disable the SHARED_NODES mode of the optimizer],[],[with_shared_nodes=yes])      # This makes configure default to --without-Perl   # Remove this when the Perl module stops crashing and hanging. -Hubbe
561:    else :; fi   else :; fi    - if test "x$with_shared_nodes" = xyes; then + if test "x$with_shared_nodes" != xyes; then    AC_MSG_WARN([Enabling the SHARED_NODES mode of the optimizer.])    AC_MSG_WARN([Note that this is EXPERIMENTAL.])    AC_DEFINE(SHARED_NODES)