X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=f7117be506e7244a9b5f1d2c4c2f883f27e3362b;hp=b047e6da1dd560dfd09d3bc6b412b9a6b494b7d7;hb=58b2fdadbb7b8a8845ff67501520fe1660dedeee;hpb=180d8e06b6f1e7fe34b1a80ca1edde0dddf113f1 diff --git a/yaz-config.in b/yaz-config.in index b047e6d..f7117be 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.2 2000-10-11 10:40:56 adam Exp $ +# $Id: yaz-config.in,v 1.13 2002-05-13 14:13:37 adam Exp $ yazprefix=@prefix@ yaz_echo_cflags=no yaz_echo_libs=no @@ -7,9 +7,11 @@ 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@ -yazlibs="@LIBS@" +yazextralibs="@LIBS@" YAZVERSION=@VERSION@ usage() @@ -23,6 +25,11 @@ Options: [--lalibs] [--cflags] [--tabs] + [--comp] +Libraries: + threads + malloc + ssl EOF exit $1 } @@ -58,12 +65,21 @@ while test $# -gt 0; do --tabs) yaz_echo_tabs=yes ;; - --source) - yaz_echo_source=yes - ;; --lalibs) yaz_echo_lalibs=yes ;; + --comp) + yaz_echo_comp=yes + ;; + threads) + lib_thread=yes + ;; + malloc) + lib_malloc=yes + ;; + ssl) + lib_ssl=yes + ;; -*) yaz_echo_help=yes ;; @@ -71,20 +87,47 @@ while test $# -gt 0; do shift done +lyaz="-lyaz" + +if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then + yazextralibs="@LIBTHREAD@ $yazextralibs" + lyaz="-lyazthread $lyaz" +fi + +if test "$lib_malloc" = "yes"; then + lyaz="-lyazmalloc $lyaz" +fi + +if test "$lib_ssl" = "yes" -a -n "@SSL_LIBS@"; then + yazextralibs="@SSL_LIBS@ $yazextralibs" + lyaz="-lyazssl $lyaz" +fi + if test "$yaz_echo_source" = "yes"; then YAZTAB=${yaz_src_root}/tab - YAZBIN=${yaz_src_root}/bin - YAZLIB="-L${yaz_src_root}/lib/.libs -lyaz $yazlibs" - YAZLALIB="${yaz_src_root}/lib/libyaz.la $yazlibs" + YAZBIN=${yaz_build_root}/bin + YAZLIB="-L${yaz_build_root}/lib/.libs $lyaz $yazextralibs" + YAZLALIB="${yaz_build_root}/lib/libyaz.la $yazextralibs" + if test "$lib_ssl" = "yes" -a -n "$SSL_LIBS@"; then + YAZLALIB="${yaz_build_root}/lib/libyazssl.la" + fi + if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then + YAZLALIB="${yaz_build_root}/lib/libyazthread.la $YAZLALIB" + fi + if test "$lib_malloc" = "yes"; then + YAZLALIB="${yaz_build_root}/lib/libyazmalloc.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 + YAZTAB=${yazprefix}/share/yaz/tab + YAZBIN=${yazprefix}/bin + YAZCOMP=${yazprefix}/bin/yaz-comp if test "$yazprefix" = "/usr"; then - YAZLIB="-lyaz $yazlibs" + YAZLIB="$lyaz $yazextralibs" else - YAZLIB="-L$yazprefix/lib -lyaz $yazlibs" + YAZLIB="-L$yazprefix/lib $lyaz $yazextralibs" fi YAZLALIB=$YAZLIB if test "$yazprefix" = "/usr"; then @@ -94,6 +137,16 @@ else fi fi +YAZINC="$YAZINC @YAZ_CONF_CFLAGS@" + +if test "$lib_thread" = "yes"; then + YAZINC="$YAZINC @CFLAGSTHREADS@" +fi + +if test "$lib_ssl" = "yes"; then + YAZINC="$YAZINC @SSL_CFLAGS@" +fi + if test "$yaz_echo_help" = "yes"; then usage 1 1>&2 fi @@ -109,3 +162,6 @@ fi if test "$yaz_echo_lalibs" = "yes"; then echo $YAZLALIB fi +if test "$yaz_echo_comp" = "yes"; then + echo $YAZCOMP +fi