pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1999-11-13
1999-11-13 00:33:17 by Henrik Grubbström (Grubba) <grubba@grubba.org>
de2896a7b9bc388df2c1d7e8f3f7c35a6791cb18 (
10
lines) (+
9
/-
1
)
[
Show
|
Annotate
]
Branch:
7.9
Added --with-shared-nodes.
Rev: src/configure.in:1.330
1:
-
AC_REVISION("$Id: configure.in,v 1.
329
1999/11/
07
01
:
41
:
00
per
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
330
1999/11/
13
00
:
33
:
17
grubba
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
441:
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, [ --with-bignums enable internal conversion to bignums],[],[with_bignums=yes])
+
AC_ARG_WITH(shared-nodes,[ --with-shared-nodes enable the SHARED_NODES mode of the optimizer (EXPERIMENTAL)],[],[])
if test "x$with_bignums" = xyes; then AC_DEFINE(AUTO_BIGNUM)
452:
else :; fi else :; fi
+
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)
+
else :; fi
+
if test "x$with_poll" = "xyes"; then AC_DEFINE(HAVE_AND_USE_POLL) else :; fi