pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-03-06
2000-03-06 18:07:28 by Martin Stjernholm <mast@lysator.liu.se>
72f0cb07ae3ba54508e00fc7ffc4c6c8ddc249e0 (
9
lines) (+
7
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
Define THREAD_TRACE by default.
Rev: src/configure.in:1.348
1:
-
AC_REVISION("$Id: configure.in,v 1.
347
2000/03/
04
16
:
25
:
35
grubba
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
348
2000/03/
06
18
:
07
:
28
mast
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
526:
]) AC_ARG_WITH(max-fd, [ --with-max-fd=X set how many filedescriptors can be used at once],[pike_cv_max_open_fd=$withval],[]) AC_ARG_WITH(oob, [ --with-oob enable out-of-band data handling],[AC_DEFINE(WITH_OOB)],[])
-
AC_ARG_WITH(thread-trace,[ --
with
-thread-trace
enable
individual tracing of threads],[
AC_DEFINE(THREAD_TRACE)
],[])
+
AC_ARG_WITH(thread-trace,[ --
without
-thread-trace
disable
individual tracing of threads],[],[
with_thread_trace=yes
])
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])
556:
AC_DEFINE(__CHECKER__) else :; fi
+
if test "x$with_thread_trace" = "xyes"; then
+
AC_DEFINE(THREAD_TRACE)
+
else :; fi
+
# # Allow --with(out)-debug to toggle both cdebug and rtldebug, but # let --with(out)-{c,rtl}debug take precedence.