X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=configure.in;h=60411a1375bc12bae90955ba72074e5b6ab8b84b;hp=51392a8a390421d7cd07231c62e067885c203295;hb=22f4e21c81ec94ad74eb7a329482cbe4a836cec9;hpb=13671e7cc0f3dd4e4b02f94d64a50778c5696ba6 diff --git a/configure.in b/configure.in index 51392a8..60411a1 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.55 2001-11-18 21:14:22 adam Exp $ +dnl $Id: configure.in,v 1.64 2002-03-18 12:22:00 adam Exp $ AC_INIT(include/yaz/yaz-version.h) -AM_INIT_AUTOMAKE(yaz, 1.8.3) +AM_INIT_AUTOMAKE(yaz, 1.8.6) dnl AC_SUBST(READLINE_LIBS) dnl ------ Checking programs @@ -49,13 +49,35 @@ dnl dnl ------ Open SSL openssl=no AC_ARG_WITH(openssl, [ --with-openssl[=DIR] OpenSSL library in DIR], [openssl=$withval]) -if test "$openssl" = "yes"; then - AC_CHECK_LIB(crypto, main) +AC_SUBST(SSL_CFLAGS) +AC_SUBST(SSL_LIBS) +AC_SUBST(SSL_DEFS) +USE_SSL=0 +SSL_CFLAGS="" +SSL_LIBS="" +SSL_DEFS="" +if test "$openssl" != "no"; then + xLIBS="$LIBS"; + xCFLAGS="$CFLAGS"; + if test "$openssl" != "yes"; then + SSL_CFLAGS="-I$openssl/include -I$openssl/include/openssl" + SSL_LIBS="-L$openssl/lib" + CFLAGS="$SSL_CFLAGS $CFLAGS" + LIBS="$SSL_LIBS $LIBS" + fi + AC_CHECK_LIB(crypto, main,[SSL_LIBS="$SSL_LIBS -lcrypto"]) + LIBS="$LIBS $SSL_LIBS" AC_CHECK_LIB(ssl, SSL_new) if test "$ac_cv_lib_ssl_SSL_new" = "yes"; then - AC_CHECK_HEADERS(openssl/ssl.h) + SSL_LIBS="$SSL_LIBS -lssl" + AC_CHECK_HEADER(openssl/ssl.h,[SSL_DEFS="-DHAVE_OPENSSL_SSL_H=1"; USE_SSL=1]) + else + SSL_LIBS="" fi + LIBS="$xLIBS" + CFLAGS="$xCFLAGS" fi +AM_CONDITIONAL(ISSSL, test $USE_SSL = "1") dnl ------ GNU Readline READLINE_SHARED_LIBADD="" AC_CHECK_LIB(ncurses, tgetent, [READLINE_SHARED_LIBADD="-lncurses"], @@ -102,6 +124,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) @@ -113,6 +136,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 @@ -168,6 +192,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) @@ -185,6 +218,7 @@ dnl ------ Makefiles dnl AC_OUTPUT([ Makefile +yaz.spec util/Makefile odr/Makefile z39.50/Makefile @@ -202,6 +236,7 @@ zoom/Makefile client/Makefile ztest/Makefile doc/Makefile +doc/yaz.xml yaz-config lib/yaz-config ],[chmod +x yaz-config lib/yaz-config])