X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=698563896b50d613a2a5ca9689bda58591ad4411;hb=f722c8d9517ec491e2469cdc91a3751dd5e7a6df;hp=524ee200c63ae11c151cf02e4a6965a2527b157c;hpb=55003dbfec0492fabba2dcfaffc7a4c698742f98;p=yaz-moved-to-github.git diff --git a/configure.in b/configure.in index 524ee20..6985638 100644 --- a/configure.in +++ b/configure.in @@ -1,8 +1,8 @@ dnl YAZ Toolkit, Index Data 1994-2001 dnl See the file LICENSE for details. -dnl $Id: configure.in,v 1.59 2002-01-17 21:04:43 adam Exp $ +dnl $Id: configure.in,v 1.62 2002-03-16 11:45:00 adam Exp $ AC_INIT(include/yaz/yaz-version.h) -AM_INIT_AUTOMAKE(yaz, 1.8.5) +AM_INIT_AUTOMAKE(yaz, 1.8.6) dnl AC_SUBST(READLINE_LIBS) dnl ------ Checking programs @@ -139,6 +139,14 @@ if test "$enable_pth" = "yes"; then LIBS=$OLIBS fi dnl +dnl ------ Memory debugging +AC_ARG_ENABLE(memdebug, [ --enable-memdebug enable memory debugging],[enable_memdebug=$enableval],[enable_memdebug=none]) +if test "$enable_memdebug" = "yes"; then + AC_DEFINE(TRACE_XMALLOC,2) +elif test "$enable_memdebug" = "no"; then + AC_DEFINE(TRACE_XMALLOC,0) +fi +dnl dnl ------ POSIX Threads AC_ARG_ENABLE(threads, [ --disable-threads disable POSIX threads],[enable_threads=$enableval],[enable_threads=yes]) if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then @@ -195,6 +203,7 @@ dnl ------ Makefiles dnl AC_OUTPUT([ Makefile +yaz.spec util/Makefile odr/Makefile z39.50/Makefile @@ -212,6 +221,7 @@ zoom/Makefile client/Makefile ztest/Makefile doc/Makefile +doc/yaz.xml yaz-config lib/yaz-config ],[chmod +x yaz-config lib/yaz-config])