#!/bin/sh

prefix=/usr/local
exec_prefix=${prefix}
exec_prefix_set=no
pthread_lib="-lpthread"
pthread_cflags="-D_REENTRANT -pthread"
solaris=""
reentrant="yes"
dl_lib="-ldl"
dl_cflags="-DSU_USE_DL"
ssl_lib="-lssl"
ssl_cflags="-DSU_USE_SSL"
arch_lib="-lz -lbz2"
arch_cflags="-DSU_USE_ARCH"
ansi_cflags="-DSU_ENABLE_ANSI_CODE"

usage()
{
	cat <<EOF
Usage: skyutils-config [OPTIONS]
Options:
	[--prefix[=DIR]]
	[--exec-prefix[=DIR]]
	[--version]
	[--libs]
        [--libs-static]
	[--cflags]
        [--reentrant]
EOF
	exit $1
}

if test $# -eq 0; then
	usage 1 1>&2
fi

lib_gtk=yes

while test $# -gt 0; do
  case "$1" in
  -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
  *) optarg= ;;
  esac

  case $1 in
    --prefix=*)
      prefix=$optarg
      if test $exec_prefix_set = no ; then
        exec_prefix=$optarg
      fi
      ;;
    --prefix)
      echo_prefix=yes
      ;;
    --exec-prefix=*)
      exec_prefix=$optarg
      exec_prefix_set=yes
      ;;
    --exec-prefix)
      echo_exec_prefix=yes
      ;;
    --version)
      echo 2.7
      ;;
    --cflags)
      echo_cflags=yes
      ;;
    --libs)
      echo_libs=yes
      ;;
    --libs-static)
      echo_libs_static=yes
      ;;
    --reentrant)
      echo_reentrant=yes
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

if test "$echo_prefix" = "yes"; then
	echo $prefix
fi

if test "$echo_exec_prefix" = "yes"; then
	echo $exec_prefix
fi

if test "$echo_cflags" = "yes"; then
      if test ${prefix}/include != /usr/include ; then
        includes=-I${prefix}/include
      fi
      echo $includes $pthread_cflags $dl_cflags $ssl_cflags $arch_cflags $ansi_cflags
fi

if test "$echo_libs" = "yes"; then
      libdirs=-L${exec_prefix}/lib
      echo $pthread_lib $libdirs -lskyutils $dl_lib $ssl_lib $arch_lib $solaris
fi

if test "$echo_libs_static" = "yes"; then
      libdirs=-L${exec_prefix}/lib
      echo $pthread_lib $libdirs ${exec_prefix}/lib/libskyutils.a $dl_lib $ssl_lib $arch_lib $solaris
fi

if test "$echo_reentrant" = "yes"; then
      echo $reentrant
fi
