Get rid of SSL_{CFLAGS,DEFS,LIBS}
[yaz-moved-to-github.git] / yaz-config.in
index 70241cb..2e673df 100644 (file)
@@ -1,7 +1,133 @@
 #!/bin/sh
-# yaz-config for source tree
+# $Id: yaz-config.in,v 1.21 2004-05-01 23:32:20 adam Exp $
+yazprefix=@prefix@
+yaz_echo_cflags=no
+yaz_echo_libs=no
+yaz_echo_help=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@
+
+yazextralibs="@LIBS@"
 YAZVERSION=@VERSION@
-YAZBIN="@YAZ_SRC_ROOT@/bin"
-YAZTAB="@YAZ_SRC_ROOT@/tab"
-YAZLIB="-L@YAZ_SRC_ROOT@/lib/.libs -lyaz"
-YAZINC="-I@YAZ_SRC_ROOT@/include"
+
+usage()
+{
+       cat <<EOF
+Usage: yaz-config [OPTIONS] [LIBRARIES]
+Options:
+       [--prefix[=DIR]]
+       [--version]
+       [--libs]
+       [--lalibs]
+       [--cflags]
+       [--comp]
+Libraries:
+       threads
+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
+      ;;
+    --lalibs)
+      yaz_echo_lalibs=yes
+      ;;
+    --comp)
+      yaz_echo_comp=yes
+      ;;
+    threads)
+      lib_thread=yes
+      ;;
+    malloc)
+      lib_malloc=yes
+      ;;
+    -*)
+      yaz_echo_help=yes
+      ;;
+  esac
+  shift
+done
+
+lyaz="-lyaz"
+
+if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then
+    yazextralibs="@LIBTHREAD@ $yazextralibs"
+    lyaz="-lyazthread $lyaz"
+fi 
+
+if test "$yaz_echo_source" = "yes"; then
+    YAZBIN=${yaz_build_root}/bin
+    YAZLIB="-L${yaz_build_root}/src/.libs $lyaz $yazextralibs"
+    YAZLALIB="${yaz_build_root}/src/libyaz.la $yazextralibs"
+    if test "$lib_thread" = "yes" -a -n "@CFLAGSTHREADS@"; then
+        YAZLALIB="${yaz_build_root}/src/libyazthread.la $YAZLALIB"
+    fi
+    YAZINC="-I${yaz_src_root}/include"
+    YAZCOMP=${yaz_src_root}/util/yaz-comp
+else
+    YAZBIN=${yazprefix}/bin
+    YAZCOMP=${yazprefix}/bin/yaz-comp
+
+    if test "$yazprefix" = "/usr"; then
+       YAZLIB="$lyaz $yazextralibs"
+    else
+       YAZLIB="-L$yazprefix/lib $lyaz $yazextralibs"
+    fi
+    YAZLALIB=$YAZLIB
+    if test "$yazprefix" = "/usr"; then
+       YAZINC=
+    else
+       YAZINC=-I$yazprefix/include
+    fi
+fi
+
+YAZINC="$YAZINC @YAZ_CONF_CFLAGS@"
+
+if test "$lib_thread" = "yes"; then
+    YAZINC="$YAZINC @CFLAGSTHREADS@"
+fi
+
+if test "$yaz_echo_help" = "yes"; then
+       usage 1 1>&2
+fi
+if test "$yaz_echo_cflags" = "yes"; then
+       echo $YAZINC
+fi
+if test "$yaz_echo_libs" = "yes"; then
+       echo $YAZLIB
+fi
+if test "$yaz_echo_lalibs" = "yes"; then
+       echo $YAZLALIB
+fi
+if test "$yaz_echo_comp" = "yes"; then
+       echo $YAZCOMP
+fi