#!/bin/sh

prefix=/usr/local
exec_prefix=${prefix}
exec_prefix_set=no
CC="gcc"
CXX="c++"
LD=""

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 ${prefix}/include != /usr/include ; then
        if test ${prefix}/include != /usr/include/c++ ; then
            includes=-I${prefix}/include
        fi
    fi
    includes="$includes -I${exec_prefix}/lib/wx/include -D__USE_WXCONFIG__"
    echo $includes -D__WXDEBUG__ -D__WXGTK__ 
}

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.3.0
      ;;
    --cppflags)
      cppflags
      ;;
    --cflags)
      echo `cppflags` 
      ;;
    --cxxflags)
      echo `cppflags`  
      ;;
    --libs)
      if test ${exec_prefix}/lib != /usr/lib ; then
        libs="-L${exec_prefix}/lib"
      fi
      echo $libs -lwx_gtkd -L/usr/lib -L/usr/X11R6/lib -lgtk -lgdk -rdynamic -lgmodule -lgthread -lglib -lpthread -ldl -lXi -lXext -lX11 -lm       -ldl    -lpthread    -lm
      ;;
    --cc)
      echo $CC
      ;;
    --cxx)
      echo $CXX
      ;;
    --ld)
      echo $LD
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

