X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=yaz-config.in;h=f0ec873bc435cd0325befc44e7bfad7de4a63ee1;hb=398b30f86d12b3b14c7d389325164ee2df7836b9;hp=ef737b922552cb9d33a46cd2bee8fd39cc0c6a4f;hpb=772d9a39dd0e3e139ab975d7d45d1262f5471164;p=yaz-moved-to-github.git diff --git a/yaz-config.in b/yaz-config.in index ef737b9..f0ec873 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.7 2001-04-05 13:08:48 adam Exp $ +# $Id: yaz-config.in,v 1.11 2001-11-13 23:00:42 adam Exp $ yazprefix=@prefix@ yaz_echo_cflags=no yaz_echo_libs=no @@ -28,6 +28,7 @@ Options: [--comp] Libraries: threads + malloc EOF exit $1 } @@ -72,6 +73,9 @@ while test $# -gt 0; do threads) lib_thread=yes ;; + malloc) + lib_malloc=yes + ;; -*) yaz_echo_help=yes ;; @@ -79,20 +83,27 @@ 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 "$lib_malloc" = "yes"; then + lyaz="-lyazmalloc $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" + YAZLALIB="${yaz_build_root}/lib/libyaz.la $yazextralibs" + 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 @@ -115,7 +126,7 @@ else fi if test "$lib_thread" = "yes"; then - YAZINC="$YAZINC -D_REENTRANT" + YAZINC="$YAZINC @CFLAGSTHREADS@" fi if test "$yaz_echo_help" = "yes"; then