X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=configure.in;h=60411a1375bc12bae90955ba72074e5b6ab8b84b;hb=a8fce80377e8bbbbbed33aa4d8927d1a53606f8a;hp=e35f0f14b1879add06dce107658ae9059b7e02c5;hpb=2ab206244c2469005c12b5c071e360fbb6a1fb9c;p=yaz-moved-to-github.git diff --git a/configure.in b/configure.in index e35f0f1..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.53 2001-11-12 11:27:21 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.2) +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"], @@ -67,8 +89,11 @@ AC_CHECK_LIB(history, add_history, [READLINE_LIBS="$READLINE_LIBS -lhistory"]) if test "$ac_cv_lib_readline_readline" = "yes"; then AC_CHECK_HEADERS(readline/readline.h readline/history.h) fi -dnl ------ snprintf -AC_CHECK_FUNCS(vsnprintf gettimeofday) +dnl ------ various functions +AC_CHECK_FUNCS(vsnprintf gettimeofday poll) +if test "$ac_cv_func_poll" = "yes"; then + AC_CHECK_HEADERS(sys/poll.h) +fi dnl dnl ------ tcpd AC_ARG_ENABLE(tcpd,[ --enable-tcpd[=PREFIX] enable TCP wrapper for server if available]) @@ -99,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) @@ -110,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 @@ -165,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) @@ -182,6 +218,7 @@ dnl ------ Makefiles dnl AC_OUTPUT([ Makefile +yaz.spec util/Makefile odr/Makefile z39.50/Makefile @@ -199,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])