#!/bin/sh

prefix=/usr
exec_prefix=/usr
exec_prefix_set=no
CC="gcc"
CXX="c++"
LD="gcc -shared -o"

usage()
{
    cat <<EOF
Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version]
                 [--libs] [--cppflags] [--cflags] [--cxxflags]
                 [--cc] [--cxx] [--ld]

wx-config returns configuration information about the installed
version of wxWindows. It may be used to query its version and
installation directories and also retrieve the C and C++ compilers
and linker which were used for its building and the corresponding
flags.
EOF

    exit $1
}

cppflags()
{
    if test /usr/include != /usr/include ; then
        if test /usr/include != /usr/include/c++ ; then
            includes=-I/usr/include
        fi
    fi
    includes="$includes -I/usr/lib/wx/include -D__USE_WXCONFIG__"
    echo $includes  -D__WXBASE__ 
}

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

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
      ;;
    --exec-prefix=*)
      exec_prefix=$optarg
      exec_prefix_set=yes
      ;;
    --exec-prefix)
      echo $exec_prefix
      ;;
    --version)
      echo 2.2.7
      ;;
    --cppflags)
      cppflags
      ;;
    --cflags)
      echo `cppflags` 
      ;;
    --cxxflags)
      echo `cppflags`  
      ;;
    --libs)
      if test /usr/lib != /usr/lib ; then
        libs="-L/usr/lib"
      fi
      echo $libs -lwx_base  -ldl    -lpthread   -lz -lm
      ;;
    --cc)
      echo $CC
      ;;
    --cxx)
      echo $CXX
      ;;
    --ld)
      echo $LD
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

