pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
2000-12-19
2000-12-19 14:23:07 by Henrik Grubbström (Grubba) <grubba@grubba.org>
4b8d502243fc0b35c951b7fec47e71a979c9eaf7 (
16
lines) (+
14
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
--with-dmalloc now implies --with-rtldebug.
Rev: src/configure.in:1.443
1:
-
AC_REVISION("$Id: configure.in,v 1.
442
2000/12/19
00
:
43
:
43
hubbe
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
443
2000/12/19
14
:
23
:
07
grubba
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
615:
AC_ARG_WITH(gdbm, [ --without-gdbm no GNU database manager support ]) AC_ARG_WITH(gmp, [ --without-gmp no support for Gmp bignums])
+
AC_ARG_WITH(dmalloc, [ --with-dmalloc enable memory-leak tests],[with_debug="yes" AC_DEFINE(DEBUG_MALLOC,10)],[])
AC_ARG_WITH(debug, [ --without-debug disable run debugging],[],[with_debug=]) AC_ARG_WITH(rtldebug, [ --with-rtldebug enable run time self tests],[],[with_rtldebug=]) AC_ARG_WITH(cdebug, [ --without-cdebug disable -g],[],[
653:
AC_ARG_WITH(mysql, [ --without-mysql no support for the Mysql database],[],[with_mysql=yes]) AC_ARG_WITH(gif-rle, [ --with-gif-rle use kind-of-rle packing instead of lzw],[],[]) AC_ARG_WITH(rsaref, [ --with-rsaref[=path] Support for RSAREF],[],[])
-
AC_ARG_WITH(dmalloc, [ --with-dmalloc enable memory-leak tests],[AC_DEFINE(DEBUG_MALLOC,10)],[])
+
AC_ARG_WITH(checker, [ --with-checker add extra memory checking overhead (Purify)]) AC_ARG_WITH(profiling, [ --with-profiling add code used to profile pike code ],[AC_DEFINE(PROFILING)],[]) AC_ARG_WITH(pg, [ --with-pg Use the gcc -pg option],
739:
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.
753:
#
+
# --with-dmalloc requires --with-rtldebug
+
#
+
if test "x$with_dmalloc" = "x"; then :; else
+
if test "x$with_rtldebug" = "xyes"; then :; else
+
AC_MSG_WARN([Debug malloc requires rtldebug. Enabling rtldebug.])
+
fi
+
fi
+
+
+
#
# Defaults for cdebug and rtldebug here: #