X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=2c5f686549541f5e3604ee728e5193d8bc93ca6c;hp=f0ec873bc435cd0325befc44e7bfad7de4a63ee1;hb=22f4e21c81ec94ad74eb7a329482cbe4a836cec9;hpb=2b381dfe4c8f63130ce32e1117adf9e6be5cfa3b diff --git a/yaz-config.in b/yaz-config.in index f0ec873..2c5f686 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: yaz-config.in,v 1.11 2001-11-13 23:00:42 adam Exp $ +# $Id: yaz-config.in,v 1.12 2002-03-18 12:22:00 adam Exp $ yazprefix=@prefix@ yaz_echo_cflags=no yaz_echo_libs=no @@ -29,6 +29,7 @@ Options: Libraries: threads malloc + ssl EOF exit $1 } @@ -76,6 +77,9 @@ while test $# -gt 0; do malloc) lib_malloc=yes ;; + ssl) + lib_ssl=yes + ;; -*) yaz_echo_help=yes ;; @@ -94,11 +98,19 @@ 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_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 @@ -129,6 +141,10 @@ 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