pike.git/
src/
configure.in
Branch:
Tag:
Non-build tags
All tags
No tags
1998-04-16
1998-04-16 01:22:03 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
26be6039e0f67ec43ca30b20e2c8d1574394d5c4 (
5
lines) (+
3
/-
2
)
[
Show
|
Annotate
]
Branch:
7.9
now defines DEBUG_MALLOC to 10 if you choose --with-dmalloc
Rev: src/configure.in:1.176
1:
-
AC_REVISION("$Id: configure.in,v 1.
175
1998/04/
13
14
:
18
:
41
grubba
Exp $")
+
AC_REVISION("$Id: configure.in,v 1.
176
1998/04/
16
01
:
22
:
03
hubbe
Exp $")
AC_INIT(interpret.c) AC_CONFIG_HEADER(machine.h)
97:
AC_ARG_WITH(zlib, [ --without-zlib no gz compression support],[],[with_zlib=yes]) AC_ARG_WITH(ssleay, [ --without-ssleay no support for the secure socket protocol],[],[with_ssleay=yes]) AC_ARG_WITH(mysql, [ --without-mysql no support for the Mysql database],[],[with_mysql=yes])
-
AC_ARG_WITH(dmalloc, [ --with-dmalloc enable memory-leak tests],[AC_DEFINE(DEBUG_MALLOC)],[])
+
AC_ARG_WITH(dmalloc, [ --with-dmalloc enable memory-leak tests],[AC_DEFINE(DEBUG_MALLOC
,10
)],[])
AC_ARG_WITH(profiling, [ --with-profiling add code used to profile pike code ],[AC_DEFINE(PROFILING)],[]) AC_ARG_WITH(poll, [ --with-poll use poll instead of select],[AC_DEFINE(HAVE_AND_USE_POLL)],[]) AC_ARG_WITH(max-fd, [ --with-max-fd=X set how many filedescriptors can be used at once],[pike_cv_max_open_fd=$withval],[])