1999-06-01 16:14:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
exec_prefix_set=no
|
|
|
|
|
|
|
|
usage="\
|
|
|
|
Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]"
|
|
|
|
|
|
|
|
if test $# -eq 0; then
|
|
|
|
echo "${usage}" 1>&2
|
|
|
|
exit 1
|
|
|
|
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)
|
1999-10-12 09:44:18 +00:00
|
|
|
echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
--cflags)
|
|
|
|
if test @includedir@ != /usr/include ; then
|
|
|
|
if test @includedir@ != /usr/include/c++ ; then
|
|
|
|
includes=-I@includedir@
|
|
|
|
fi
|
|
|
|
fi
|
1999-06-05 20:42:19 +00:00
|
|
|
includes="$includes -I@libdir@/wx/include"
|
1999-12-28 21:32:48 +00:00
|
|
|
echo $includes @WXDEBUG_DEFINE@ @TOOLKIT_DEF@ @TOOLKIT_INCLUDE@
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
--libs)
|
|
|
|
if test @libdir@ != /usr/lib ; then
|
|
|
|
libs="-L@libdir@"
|
|
|
|
fi
|
1999-06-05 20:42:19 +00:00
|
|
|
echo $libs -l@WX_LIBRARY@ @EXTRA_LIBS@
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "${usage}" 1>&2
|
|
|
|
exit 1
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|