+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 @includedir@ != /usr/include ; then
+ if test @includedir@ != /usr/include/c++ ; then
+ includes=-I@includedir@
+ fi
+ fi
+ includes="$includes -I@libdir@/wx/include -D__USE_WXCONFIG__"
+ echo $includes @WXDEBUG_DEFINE@ @TOOLKIT_DEF@ @WXCONFIG_INCLUDE@
+}