X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=698563896b50d613a2a5ca9689bda58591ad4411;hb=f722c8d9517ec491e2469cdc91a3751dd5e7a6df;hp=fe6f8cc9142b8e68972d5d086ee0a4a907cc73e0;hpb=b51db7b9db7ca8f8871f91f90683cd03c88bb4ea;p=yaz-moved-to-github.git diff --git a/configure.in b/configure.in index fe6f8cc..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.58 2002-01-11 20:26:11 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 @@ -111,6 +111,7 @@ if test "$enable_tcpd" != ""; then fi dnl dnl ------ Headers +AC_CHECK_HEADERS(fnmatch.h) AC_STDC_HEADERS if test "$ac_cv_header_stdc" = "no"; then AC_MSG_WARN(Your system doesn't seem to support ANSI C) @@ -138,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 @@ -194,6 +203,7 @@ dnl ------ Makefiles dnl AC_OUTPUT([ Makefile +yaz.spec util/Makefile odr/Makefile z39.50/Makefile @@ -211,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])