Shortcuts to start/stop service
[yaz-moved-to-github.git] / configure.in
index b8c26e3..831bffb 100644 (file)
@@ -1,6 +1,6 @@
 dnl YAZ Toolkit, Index Data 1994-2001
 dnl See the file LICENSE for details.
-dnl $Id: configure.in,v 1.60 2002-02-20 14:42:04 adam Exp $
+dnl $Id: configure.in,v 1.63 2002-03-16 11:58:41 adam Exp $
 AC_INIT(include/yaz/yaz-version.h)
 AM_INIT_AUTOMAKE(yaz, 1.8.6)
 dnl
@@ -123,6 +123,7 @@ HAVETHREADS=0
 CFLAGSTHREADS=""
 LIBTHREAD=""
 dnl
+dnl ------ GNU threads
 AC_ARG_ENABLE(pth, [  --enable-pth            enable GNU threads],[enable_pth=$enableval],[enable_pth=no])
 AC_SUBST(LIBPTH)
 if test "$enable_pth" = "yes"; then
@@ -139,14 +140,6 @@ 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=no])
-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
@@ -186,6 +179,15 @@ if test "$enable_threads" = "yes" -a "$HAVETHREADS" = "0"; then
        LIBS=$OLIBS
 fi
 AM_CONDITIONAL(ISTHR, test $HAVETHREADS = "1")
+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 ------ Using this for "in-source" yaz-config
 AC_SUBST(YAZ_SRC_ROOT)
 AC_SUBST(YAZ_BUILD_ROOT)
@@ -203,6 +205,7 @@ dnl ------ Makefiles
 dnl
 AC_OUTPUT([
 Makefile
+yaz.spec
 util/Makefile
 odr/Makefile
 z39.50/Makefile
@@ -220,6 +223,7 @@ zoom/Makefile
 client/Makefile
 ztest/Makefile
 doc/Makefile
+doc/yaz.xml
 yaz-config
 lib/yaz-config
 ],[chmod +x yaz-config lib/yaz-config])