From 8a0a59af6e336dfff88bb6d317a081b854525009 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net>
Date: Thu, 27 Apr 2000 22:42:24 -0700
Subject: [PATCH] make shared nodes the default, hope it works :)

Rev: src/configure.in:1.367
---
 src/configure.in | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/configure.in b/src/configure.in
index 07801c0c0f..8b2033e0a7 100644
--- a/src/configure.in
+++ b/src/configure.in
@@ -1,4 +1,4 @@
-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,7 +541,7 @@ AC_ARG_WITH(thread-trace,[  --without-thread-trace disable individual tracing of
 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,7 +561,7 @@ the option --without-bignums.
   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)
-- 
GitLab