pike.git
/
src
/
configure.in
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/configure.in:1:
-
AC_REVISION("$Id: configure.in,v 1.
845
2004/10/
21
11
:
35
:
39
grubba Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
846
2004/10/
22
15
:
50
:
22
grubba Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h) rm -f config.warnings 2>/dev/null if_autoconf(2,50,[ if test "x$cache_file" = "x/dev/null"; then cache_file=./config.cache if test -r "$cache_file"; then echo "loading cache $cache_file"
pike.git/src/configure.in:1338:
MY_AC_ARG_WITH(dmalloc-malloc, MY_DESCR([--with-dmalloc-malloc], [Enable overloading of malloc(3)]), [ AC_DEFINE(ENCAPSULATE_MALLOC,1) ]) MY_AC_ARG_WITH(dmalloc-malloc-leaks, MY_DESCR([--with-dmalloc-malloc-leaks], [Report memory allocated by malloc(3) as leaks.]), [ AC_DEFINE(REPORT_ENCAPSULATED_MALLOC,1) ]) MY_AC_ARG_WITH(dmalloc-trace, MY_DESCR([--with-dmalloc-trace], [enable tracepoints]), [with_dmalloc_trace="yes" AC_DEFINE(DMALLOC_TRACE,10)])
+
MY_AC_ARG_WITH(dmalloc-track-free, MY_DESCR([--with-dmalloc-track-free],
+
[track freed memory too]),
+
[ with_dmalloc_track_free="yes"
+
AC_DEFINE(DMALLOC_TRACK_FREE,10)])
AC_ARG_WITH(debug, MY_DESCR([--with-debug],[same as --with-cdebug --with-rtldebug]), [],[with_debug=]) AC_ARG_WITH(debug, MY_DESCR([--without-debug],[same as --without-cdebug --without-rtldebug]), [],[with_debug=]) AC_ARG_WITH(rtldebug, MY_DESCR([--with-rtldebug],[enable run time self tests]), [],[with_rtldebug=]) AC_ARG_WITH(cdebug, MY_DESCR([--without-cdebug],[disable -g]),[],[ case "$pike_cv_sys_os:$GCC" in Solaris:no) # Solaris/cc has problems with combining optimizations and debuginfo.