X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=e8fb979a54da0154f9e27fefd28c58dd4d18e46c;hp=ef737b922552cb9d33a46cd2bee8fd39cc0c6a4f;hb=cc6dad5cffd577eed9d001a82f08a552c2740525;hpb=772d9a39dd0e3e139ab975d7d45d1262f5471164 diff --git a/yaz-config.in b/yaz-config.in index ef737b9..e8fb979 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,17 +1,16 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.7 2001-04-05 13:08:48 adam Exp $ +# $Id: yaz-config.in,v 1.20 2004-04-28 22:44:58 adam Exp $ yazprefix=@prefix@ yaz_echo_cflags=no yaz_echo_libs=no yaz_echo_help=no -yaz_echo_tabs=no yaz_echo_source=yes yaz_echo_lalibs=no yaz_echo_comp=no yaz_src_root=@YAZ_SRC_ROOT@ yaz_build_root=@YAZ_BUILD_ROOT@ -yazextralibs="@LIBS@" +yazextralibs="@SSL_LIBS@ @LIBS@" YAZVERSION=@VERSION@ usage() @@ -24,7 +23,6 @@ Options: [--libs] [--lalibs] [--cflags] - [--tabs] [--comp] Libraries: threads @@ -60,9 +58,6 @@ while test $# -gt 0; do --libs) yaz_echo_libs=yes ;; - --tabs) - yaz_echo_tabs=yes - ;; --lalibs) yaz_echo_lalibs=yes ;; @@ -72,6 +67,9 @@ while test $# -gt 0; do threads) lib_thread=yes ;; + malloc) + lib_malloc=yes + ;; -*) yaz_echo_help=yes ;; @@ -79,25 +77,23 @@ while test $# -gt 0; do shift done -if test "$lib_thread" = "yes"; then +lyaz="-lyaz" + +if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then yazextralibs="@LIBTHREAD@ $yazextralibs" - lyaz="-lyazthread -lyaz" -else - lyaz="-lyaz" + lyaz="-lyazthread $lyaz" fi + if test "$yaz_echo_source" = "yes"; then - YAZTAB=${yaz_src_root}/tab YAZBIN=${yaz_build_root}/bin - YAZLIB="-L${yaz_build_root}/lib/.libs $lyaz $yazextralibs" - if test "$lib_thread" = "yes"; then - YAZLALIB="${yaz_build_root}/lib/libyazthread.la ${yaz_build_root}/lib/libyaz.la $yazextralibs" - else - YAZLALIB="${yaz_build_root}/lib/libyaz.la $yazextralibs" + YAZLIB="-L${yaz_build_root}/src/.libs $lyaz $yazextralibs" + YAZLALIB="${yaz_build_root}/src/libyaz.la $yazextralibs" + if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then + YAZLALIB="${yaz_build_root}/src/libyazthread.la $YAZLALIB" fi YAZINC="-I${yaz_src_root}/include" YAZCOMP=${yaz_src_root}/util/yaz-comp else - YAZTAB=${yazprefix}/share/yaz/tab YAZBIN=${yazprefix}/bin YAZCOMP=${yazprefix}/bin/yaz-comp @@ -114,10 +110,14 @@ else fi fi +YAZINC="$YAZINC @YAZ_CONF_CFLAGS@" + if test "$lib_thread" = "yes"; then - YAZINC="$YAZINC -D_REENTRANT" + YAZINC="$YAZINC @CFLAGSTHREADS@" fi +YAZINC="$YAZINC @SSL_CFLAGS@" + if test "$yaz_echo_help" = "yes"; then usage 1 1>&2 fi @@ -127,9 +127,6 @@ fi if test "$yaz_echo_libs" = "yes"; then echo $YAZLIB fi -if test "$yaz_echo_tabs" = "yes"; then - echo $YAZTAB -fi if test "$yaz_echo_lalibs" = "yes"; then echo $YAZLALIB fi