Menu

[r4519]: / trunk / toolkits / basemap / geos-2.2.3 / tools / geos-config.in  Maximize  Restore  History

Download this file

58 lines (55 with data), 825 Bytes

#!/bin/sh
prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@

usage()
{
    cat <<EOF
Usage: geos-config [OPTIONS]
Options:
     [--prefix]
     [--version]
     [--libs]
     [--cflags]
     [--ldflags]
     [--includes]
     [--jtsport]
EOF
    exit $1
}
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)
    echo ${prefix}
     ;;
    --version)
    echo @VERSION@
     ;;
    --cflags)
    echo -I${prefix}/include 
      ;;
    --libs)
      echo -L${libdir} -lgeos
      ;;
    --ldflags)
      echo -L${libdir}
      ;;
    --includes)
      echo ${prefix}/include
      ;;
    --jtsport)
    echo @JTS_PORT@ 
      ;;
    *)
      usage 1 1>&2
      ;;
  esac
  shift
done

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.