X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=yaz-config.in;h=979985dd546c1a09baf7eec268f5162938d023b0;hp=e491516a3baad8f7afa038bc59d1a0c69ad8879d;hb=dc86a5103817732735d2591d3775114a86de94ae;hpb=92d27e4d818fdd4613e42ea79184974c39d34c93 diff --git a/yaz-config.in b/yaz-config.in index e491516..979985d 100644 --- a/yaz-config.in +++ b/yaz-config.in @@ -1,24 +1,30 @@ #!/bin/sh # This file is part of the YAZ toolkit. -# Copyright (C) 1995-2008 Index Data +# Copyright (C) Index Data +# See the file LICENSE for details. -prefix=@prefix@ -exec_prefix=@exec_prefix@ -libdir=@libdir@ -includedir=@includedir@ +prefix="@prefix@" +exec_prefix="@exec_prefix@" +libdir="@libdir@" +includedir="@includedir@" echo_cflags=no echo_libs=no echo_help=no +echo_include=no echo_source=yes echo_lalibs=no echo_comp=no -src_root=@abs_top_srcdir@ -build_root=@abs_top_builddir@ +src_root="@abs_top_srcdir@" +build_root="@abs_top_builddir@" ICU_LIBS="@ICU_LIBS@" ICU_CPPFLAGS="@ICU_CPPFLAGS@" SSL_LIBS="@SSL_LIBS@" +GCRYPT_LIBS="@GCRYPT_LIBS@" +MEMCACHED_LIBS="@MEMCACHED_LIBS@" +HIREDIS_LIBS="@HIREDIS_LIBS@" LIBS="@LIBS@" VERSION=@VERSION@ +YAZVERSION=$VERSION VERSION_SHA1=@VERSION_SHA1@ usage() @@ -31,6 +37,7 @@ Options: [--libs] [--lalibs] [--cflags] + [--include] [--comp] [-V] Libraries: @@ -64,6 +71,9 @@ while test $# -gt 0; do --cflags) echo_cflags=yes ;; + --include) + echo_include=yes + ;; --libs) echo_libs=yes ;; @@ -107,19 +117,12 @@ if test "$lib_icu" = "yes"; then YAZLIB="-lyaz_icu $YAZLIB" fi -if test "$lib_ssl" = "yes"; then - LIBS="${SSL_LIBS} $LIBS" -fi - YAZINC="@YAZ_CONFIG_CFLAGS@" if test "$echo_source" = "yes"; then YAZBIN=${build_root}/bin if test "$lib_static" = "yes"; then - if test "$lib_ssl" != "yes"; then - LIBS="${SSL_LIBS} $LIBS" - fi YAZLIB="${build_root}/src/.libs/libyaz.a" if test "$lib_server" = "yes"; then YAZLIB="${build_root}/src/.libs/libyaz_server.a $YAZLIB" @@ -130,6 +133,7 @@ if test "$echo_source" = "yes"; then else YAZLIB="-L${build_root}/src/.libs $YAZLIB" fi + LIBS="${SSL_LIBS} ${GCRYPT_LIBS} ${MEMCACHED_LIBS} ${HIREDIS_LIBS} $LIBS" YAZLIB="$YAZLIB $LIBS" YAZLALIB="${build_root}/src/libyaz.la" @@ -141,19 +145,24 @@ if test "$echo_source" = "yes"; then fi YAZLALIB="$YAZLALIB $LIBS" - YAZINC="-I${src_root}/include $YAZINC" - YAZCOMP=${src_root}/util/yaz-asncomp + YAZBINC="-I${src_root}/include" + YAZINC="$YAZBINC $YAZINC" + YAZCOMP="${src_root}/util/yaz-asncomp" else - YAZBIN=${prefix}/bin + YAZBIN="${prefix}/bin" YAZCOMP=${prefix}/bin/yaz-asncomp if test "$prefix" != "/usr"; then YAZLIB="-L$libdir $YAZLIB" fi + if test "$lib_ssl" = "yes"; then + LIBS="${SSL_LIBS} $LIBS" + fi YAZLIB="$YAZLIB $LIBS" YAZLALIB=$YAZLIB if test "$prefix" != "/usr"; then - YAZINC="-I${includedir} $YAZINC" + YAZBINC="-I${includedir}" + YAZINC="$YAZBINC $YAZINC" fi fi @@ -170,6 +179,9 @@ fi if test "$echo_help" = "yes"; then usage 1 1>&2 fi +if test "$echo_include" = "yes"; then + echo $YAZBINC +fi if test "$echo_cflags" = "yes"; then echo $YAZINC fi