Jumbo patch: Incorporate extraArgs in memcached key YAZ-747
[yaz-moved-to-github.git] / yaz-config.in
index b047e6d..27fb8bd 100644 (file)
@@ -1,20 +1,34 @@
 #!/bin/sh
-# $Id: yaz-config.in,v 1.2 2000-10-11 10:40:56 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_src_root=@YAZ_SRC_ROOT@
+# This file is part of the YAZ toolkit.
+# Copyright (C) Index Data
+# See the file LICENSE for details.
 
-yazlibs="@LIBS@"
-YAZVERSION=@VERSION@
+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@"
+ICU_LIBS="@ICU_LIBS@"
+ICU_CPPFLAGS="@ICU_CPPFLAGS@"
+SSL_LIBS="@SSL_LIBS@"
+GCRYPT_LIBS="@GCRYPT_LIBS@"
+MEMCACHED_LIBS="@MEMCACHED_LIBS@"
+LIBS="@LIBS@"
+VERSION=@VERSION@
+YAZVERSION=$VERSION
+VERSION_SHA1=@VERSION_SHA1@
 
 usage()
 {
-       cat <<EOF
+    cat <<EOF
 Usage: yaz-config [OPTIONS] [LIBRARIES]
 Options:
        [--prefix[=DIR]]
@@ -22,90 +36,165 @@ Options:
        [--libs]
        [--lalibs]
        [--cflags]
-       [--tabs]
+       [--include]
+       [--comp]
+        [-V]
+Libraries:
+       threads icu server static
 EOF
        exit $1
 }
 
-#if test $# -eq 0; then
-#      yaz_echo_help=yes
-#fi
-
 while test $# -gt 0; do
-  case "$1" in
-  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
-  *) optarg= ;;
-  esac
-
-  case $1 in
-    --prefix=*)
-      yazprefix=$optarg
-      ;;
-    --prefix)
-      echo $yazprefix
-      exit 0
-      ;;
-    --version)
-      echo $YAZVERSION
-      exit 0
-      ;;
-    --cflags)
-      yaz_echo_cflags=yes
-      ;;
-    --libs)
-      yaz_echo_libs=yes
-      ;;
-    --tabs)
-      yaz_echo_tabs=yes
-      ;;
-    --source)
-      yaz_echo_source=yes
-      ;;
-    --lalibs)
-      yaz_echo_lalibs=yes
-      ;;
-    -*)
-      yaz_echo_help=yes
-      ;;
-  esac
-  shift
+    case "$1" in
+       -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
+       *) optarg= ;;
+    esac
+    
+    case $1 in
+       --prefix=*)
+           prefix=$optarg
+           ;;
+       --prefix)
+           echo $prefix
+           exit 0
+           ;;
+        -V)
+           echo "$VERSION $VERSION_SHA1"
+           exit 0
+            ;;
+       --version)
+           echo $VERSION
+           exit 0
+           ;;
+       --cflags)
+           echo_cflags=yes
+           ;;
+       --include)
+           echo_include=yes
+           ;;
+       --libs)
+           echo_libs=yes
+           ;;
+       --lalibs)
+           echo_lalibs=yes
+           ;;
+       --comp)
+           echo_comp=yes
+           ;;
+       threads)
+           lib_thread=yes
+           ;;
+       icu)
+           if test "$ICU_CPPFLAGS"; then
+               lib_icu=yes
+           fi
+           ;;
+       ssl)
+           lib_ssl=yes
+           ;;
+       server)
+           lib_thread=yes
+           lib_server=yes
+           ;;
+       static)
+           lib_static=yes
+           ;;
+       -*)
+           echo_help=yes
+           ;;
+    esac
+    shift
 done
 
-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"
-    YAZINC="-I${yaz_src_root}/include"
-else
-    YAZTAB=$yazprefix/share/yaz/tab
-    YAZBIN=$yazprefix/bin
+YAZLIB="-lyaz"
+if test "$lib_server" = "yes"; then
+    YAZLIB="-lyaz_server $YAZLIB"
+fi
+
+if test "$lib_icu" = "yes"; then
+    YAZLIB="-lyaz_icu $YAZLIB"
+fi
 
-    if test "$yazprefix" = "/usr"; then
-       YAZLIB="-lyaz $yazlibs"
+YAZINC="@YAZ_CONFIG_CFLAGS@"
+
+if test "$echo_source" = "yes"; then
+    YAZBIN=${build_root}/bin
+
+    if test "$lib_static" = "yes"; then
+        YAZLIB="${build_root}/src/.libs/libyaz.a"
+        if test "$lib_server" = "yes"; then
+           YAZLIB="${build_root}/src/.libs/libyaz_server.a $YAZLIB"
+        fi
+        if test "$lib_icu" = "yes"; then
+           YAZLIB="${build_root}/src/.libs/libyaz_icu.a $YAZLIB"
+        fi
     else
-       YAZLIB="-L$yazprefix/lib -lyaz $yazlibs"
+        YAZLIB="-L${build_root}/src/.libs $YAZLIB"
+    fi
+    LIBS="${SSL_LIBS} ${GCRYPT_LIBS} ${MEMCACHED_LIBS} $LIBS"
+    YAZLIB="$YAZLIB $LIBS"
+
+    YAZLALIB="${build_root}/src/libyaz.la"
+    if test "$lib_server" = "yes"; then
+       YAZLALIB="${build_root}/src/libyaz_server.la $YAZLALIB"
+    fi
+    if test "$lib_icu" = "yes"; then
+       YAZLALIB="${build_root}/src/libyaz_icu.la $YAZLALIB"
     fi
+    YAZLALIB="$YAZLALIB $LIBS"
+
+    YAZBINC="-I${src_root}/include"
+    YAZINC="$YAZBINC $YAZINC"
+    YAZCOMP="${src_root}/util/yaz-asncomp"
+else
+    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 "$yazprefix" = "/usr"; then
-       YAZINC=
-    else
-       YAZINC=-I$yazprefix/include
+    if test "$prefix" != "/usr"; then
+       YAZBINC="-I${includedir}"
+       YAZINC="$YAZBINC $YAZINC"
     fi
 fi
 
-if test "$yaz_echo_help" = "yes"; then
-       usage 1 1>&2
+if test "$lib_thread" = "yes"; then
+    :
+fi
+
+if test "$lib_icu" = "yes"; then
+    YAZINC="$YAZINC $ICU_CPPFLAGS"
+    YAZLIB="$YAZLIB $ICU_LIBS"
+    YAZLALIB="$YAZLALIB $ICU_LIBS"
+fi
+
+if test "$echo_help" = "yes"; then
+    usage 1 1>&2
+fi
+if test "$echo_include" = "yes"; then
+    echo $YAZBINC
 fi
-if test "$yaz_echo_cflags" = "yes"; then
-       echo $YAZINC
+if test "$echo_cflags" = "yes"; then
+    echo $YAZINC
 fi
-if test "$yaz_echo_libs" = "yes"; then
-       echo $YAZLIB
+if test "$echo_libs" = "yes"; then
+    echo $YAZLIB
 fi
-if test "$yaz_echo_tabs" = "yes"; then
-       echo $YAZTAB
+if test "$echo_lalibs" = "yes"; then
+    echo $YAZLALIB
 fi
-if test "$yaz_echo_lalibs" = "yes"; then
-       echo $YAZLALIB
+if test "$echo_comp" = "yes"; then
+    echo $YAZCOMP
 fi
+# Local Variables:
+# mode:shell-script
+# sh-indentation: 2
+# sh-basic-offset: 4
+# End: