#!/bin/sh
# $Id: yaz-config.in,v 1.22 2004/10/27 08:18:55 adam Exp $
yazprefix=/usr
yaz_echo_cflags=no
yaz_echo_libs=no
yaz_echo_help=no
yaz_echo_source=yes
yaz_echo_lalibs=no
yaz_echo_comp=no

yazextralibs="-lxml2 -lz -lpthread -lm  -L/usr/lib64 -lssl -lcrypto -ldl   -lwrap -lnsl"
YAZVERSION=2.1.4

usage()
{
	cat <<EOF
Usage: yaz-config [OPTIONS] [LIBRARIES]
Options:
	[--prefix[=DIR]]
	[--version]
	[--libs]
	[--lalibs]
	[--cflags]
	[--comp]
Libraries:
	threads
EOF
	exit $1
}

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 "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
    yazextralibs="-lpthread $yazextralibs"
    lyaz="-lyazthread $lyaz"
fi 

if test "$yaz_echo_source" = "yes"; then
    YAZBIN=/usr/bin
    YAZLIB="-L/usr/lib64 $lyaz $yazextralibs"
    YAZLALIB="/usr/lib64/libyaz.la $yazextralibs"
    if test "$lib_thread" = "yes" -a -n "-DYAZ_POSIX_THREADS=1 -D_REENTRANT"; then
        YAZLALIB="/usr/lib64/libyazthread.la $YAZLALIB"
    fi
    YAZINC="-I/usr/include"
    YAZCOMP=/usr/bin/yaz-comp
else
    YAZBIN=/usr/bin
    YAZCOMP=/usr/bin/yaz-comp
    if test "$yazprefix" = "/usr"; then
	YAZLIB="$lyaz $yazextralibs"
    else
	YAZLIB="-L/usr/lib64 $lyaz $yazextralibs"
    fi
    YAZLALIB=$YAZLIB
    if test "$yazprefix" = "/usr"; then
	YAZINC=
    else
	YAZINC=-I/usr/include
    fi
fi

YAZINC="$YAZINC "

if test "$lib_thread" = "yes"; then
    YAZINC="$YAZINC -DYAZ_POSIX_THREADS=1 -D_REENTRANT"
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
