Move yaz-proxy to separate sub directory.
[yazpp-moved-to-github.git] / yaz++-config.in
index 1ff5a31..052e142 100644 (file)
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: yaz++-config.in,v 1.3 2001-03-26 14:43:49 adam Exp $
+# $Id: yaz++-config.in,v 1.7 2004-03-29 22:46:50 adam Exp $
 yazppprefix=@prefix@
 yaz_echo_cflags=no
 yaz_echo_libs=no
@@ -11,6 +11,7 @@ yazpp_src_root=@YAZPP_SRC_ROOT@
 yazpp_build_root=@YAZPP_BUILD_ROOT@
 
 yazlibs="@YAZLIB@ @LIBS@"
+yazlalibs="@YAZLALIB@ @LIBS@"
 YAZPPVERSION=@VERSION@
 
 usage()
@@ -27,9 +28,9 @@ EOF
        exit $1
 }
 
-#if test $# -eq 0; then
-#      yaz_echo_help=yes
-#fi
+if test $# -eq 0; then
+       yaz_echo_help=yes
+fi
 
 while test $# -gt 0; do
   case "$1" in
@@ -68,16 +69,20 @@ while test $# -gt 0; do
   shift
 done
 
+libs_short="-lyazcpp -lzoomcpp"
+
 if test "$yaz_echo_source" = "yes"; then
-    YAZPPLIB="-L${yazpp_build_root}/src/.libs -lyaz++ $yazlibs"
-    YAZPPLALIB="${yazpp_build_root}/src/libyaz++.la $yazlibs"
+    YAZPPLIB="-L${yazpp_build_root}/src/.libs -lyazcpp"
+    YAZPPLIB="$YAZPPLIB -L${yazpp_build_root}/zoom/.libs -lzoomcpp"
+    YAZPPLIB="$YAZPPLIB $yazlibs"
+    YAZPPLALIB="${yazpp_build_root}/src/libyazcpp.la $yazlalibs"
     YAZPPINC="@YAZINC@ -I${yazpp_src_root}/include"
 else
 
     if test "$yazppprefix" = "/usr"; then
-       YAZPPLIB="-lyaz++ $yazlibs"
+       YAZPPLIB="${libs_short} $yazlibs"
     else
-       YAZPPLIB="-L${yazppprefix}/lib -lyaz++ $yazlibs"
+       YAZPPLIB="-L${yazppprefix}/lib ${libs_short} $yazlibs"
     fi
     YAZPPLALIB=$YAZPPLIB
     if test "$yazppprefix" = "/usr"; then