1999-06-01 16:14:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
prefix=@prefix@
|
|
|
|
exec_prefix=@exec_prefix@
|
|
|
|
exec_prefix_set=no
|
2000-01-06 18:34:49 +00:00
|
|
|
CC="@CC@"
|
2002-12-04 14:11:26 +00:00
|
|
|
GCC="@GCC@"
|
2000-01-06 18:34:49 +00:00
|
|
|
CXX="@CXX@"
|
|
|
|
LD="@SHARED_LD@"
|
2001-09-28 07:00:13 +00:00
|
|
|
cross_compiling=@cross_compiling@
|
2001-11-03 11:08:15 +00:00
|
|
|
target=@host_alias@
|
2002-09-04 14:56:55 +00:00
|
|
|
static_flag=@STATIC_FLAG@
|
2002-12-04 14:11:26 +00:00
|
|
|
inplace_flag=no
|
1999-06-01 16:14:29 +00:00
|
|
|
|
2001-03-03 20:26:27 +00:00
|
|
|
usage()
|
|
|
|
{
|
|
|
|
cat <<EOF
|
2001-11-08 11:24:04 +00:00
|
|
|
Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--static]
|
2002-04-19 18:39:06 +00:00
|
|
|
[--libs] [--gl-libs]
|
|
|
|
[--cppflags] [--cflags] [--cxxflags] [--ldflags] [--rezflags]
|
2001-03-03 20:26:27 +00:00
|
|
|
[--cc] [--cxx] [--ld]
|
2002-12-04 14:11:26 +00:00
|
|
|
[--inplace]
|
2001-03-03 20:26:27 +00:00
|
|
|
|
|
|
|
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.
|
2002-12-04 14:11:26 +00:00
|
|
|
|
|
|
|
The --inplace flag allows wx-config to be used from the wxWindows
|
|
|
|
build directory and output flags to use the uninstalled version of
|
|
|
|
the headers and libs in the build directory. (Currently configure
|
|
|
|
must be invoked via a full path name for this to work correctly.)
|
2001-03-03 20:26:27 +00:00
|
|
|
EOF
|
|
|
|
|
|
|
|
exit $1
|
|
|
|
}
|
|
|
|
|
|
|
|
cppflags()
|
|
|
|
{
|
2002-12-04 14:11:26 +00:00
|
|
|
# we should never specify -I/usr/include on the compiler command line: this
|
|
|
|
# is at best useless and at worst breaks compilation on the systems where
|
|
|
|
# the system headers are non-ANSI because gcc works around this by storing
|
|
|
|
# the ANSI-fied versions of them in its private directory which is searched
|
|
|
|
# after all the directories on the cmd line.
|
|
|
|
#
|
|
|
|
# the situation is a bit more complicated with -I/usr/local/include: again,
|
|
|
|
# it shouldn't be specified with gcc which looks there by default anyhow
|
|
|
|
# and gives warnings (at least 3.1 does) if it is specified explicitly --
|
|
|
|
# but this -I switch *is* needed for the other compilers
|
|
|
|
#
|
|
|
|
# note that we assume that if we use GNU cc we also use GNU c++ and vice
|
|
|
|
# versa, i.e. this won't work (either for --cflags or --cxxflags) if GNU C
|
|
|
|
# compiler and non-GNU C++ compiler are used or vice versa -- we'll fix
|
|
|
|
# this when/if anybody complains about it
|
2001-11-03 11:08:15 +00:00
|
|
|
if test "@includedir@" != "/usr/include" \
|
|
|
|
-a "@includedir@" != "/usr/include/c++" \
|
2002-12-04 14:11:26 +00:00
|
|
|
-a \( "${GCC}" != "yes" \
|
|
|
|
-o "@includedir@" != "/usr/local/include" \) \
|
2001-11-03 11:08:15 +00:00
|
|
|
-a \( "${cross_compiling}" != "yes" \
|
|
|
|
-o "@includedir@" != "/usr/${target}/include" \) ;
|
2001-09-28 07:00:13 +00:00
|
|
|
then
|
2002-12-04 14:11:26 +00:00
|
|
|
includes=" -I@includedir@"
|
2001-03-03 20:26:27 +00:00
|
|
|
fi
|
2001-11-09 05:24:36 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
if test $inplace_flag = yes ; then
|
|
|
|
includes="-I$inplace_builddir/lib/wx/include/@TOOLCHAIN_NAME@ -I$inplace_include"
|
|
|
|
else
|
|
|
|
includes="-I@libdir@/wx/include/@TOOLCHAIN_NAME@$includes"
|
|
|
|
fi
|
2001-11-09 05:24:36 +00:00
|
|
|
|
|
|
|
if test $static_flag = yes ; then
|
2002-09-05 20:12:08 +00:00
|
|
|
echo $includes @WXDEBUG_DEFINE@ @TOOLCHAIN_DEFS@ @WXCONFIG_INCLUDE@ @WX_LARGEFILE_FLAGS@
|
2001-11-09 05:24:36 +00:00
|
|
|
else
|
2002-09-05 20:12:08 +00:00
|
|
|
echo $includes @WXDEBUG_DEFINE@ @TOOLCHAIN_DEFS@ @TOOLCHAIN_DLL_DEFS@ @WXCONFIG_INCLUDE@ @WX_LARGEFILE_FLAGS@
|
2001-11-09 05:24:36 +00:00
|
|
|
fi
|
2001-03-03 20:26:27 +00:00
|
|
|
}
|
1999-06-01 16:14:29 +00:00
|
|
|
|
|
|
|
if test $# -eq 0; then
|
2001-09-28 07:00:13 +00:00
|
|
|
usage 1 1>&2
|
1999-06-01 16:14:29 +00:00
|
|
|
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
|
|
|
;;
|
2001-11-08 11:24:04 +00:00
|
|
|
--static)
|
|
|
|
static_flag=yes
|
|
|
|
;;
|
2001-03-03 20:26:27 +00:00
|
|
|
--cppflags)
|
|
|
|
cppflags
|
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
--cflags)
|
2001-03-03 20:26:27 +00:00
|
|
|
echo `cppflags` @CODE_GEN_FLAGS@
|
|
|
|
;;
|
|
|
|
--cxxflags)
|
|
|
|
echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2002-04-19 18:39:06 +00:00
|
|
|
--ldflags)
|
|
|
|
echo @LDFLAGS_EXE@
|
|
|
|
;;
|
2001-10-15 10:06:24 +00:00
|
|
|
--rezflags)
|
|
|
|
echo @LIBWXMACRESWXCONFIG@
|
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
--libs)
|
2001-11-03 11:08:15 +00:00
|
|
|
if test "@libdir@" != "/usr/lib" \
|
|
|
|
-a \( "${cross_compiling}" != "yes" \
|
|
|
|
-o "@libdir@" != "/usr/${target}/lib" \) ;
|
2001-09-28 07:00:13 +00:00
|
|
|
then
|
|
|
|
libs="-L@libdir@"
|
1999-06-01 16:14:29 +00:00
|
|
|
fi
|
2001-11-08 11:24:04 +00:00
|
|
|
|
2002-12-04 14:11:26 +00:00
|
|
|
if test $inplace_flag = yes ; then
|
|
|
|
libs="-L$inplace_builddir/lib"
|
|
|
|
fi
|
|
|
|
|
2001-11-08 11:24:04 +00:00
|
|
|
if test $static_flag = yes ; then
|
2002-07-31 02:50:40 +00:00
|
|
|
echo "$libs @LDFLAGS@ @WXCONFIG_RPATH@ @libdir@/@WXCONFIG_LIBS_STATIC@ @LIBS@ @DMALLOC_LIBS@"
|
2001-11-08 11:24:04 +00:00
|
|
|
else
|
2002-07-31 02:50:40 +00:00
|
|
|
echo $libs @LDFLAGS@ @WXCONFIG_RPATH@ @WXCONFIG_LIBS@ @DMALLOC_LIBS@
|
2001-11-08 11:24:04 +00:00
|
|
|
fi
|
|
|
|
|
2001-09-28 07:00:13 +00:00
|
|
|
;;
|
|
|
|
--gl-libs)
|
2001-11-22 00:32:53 +00:00
|
|
|
if test $static_flag = yes -a "x" != "x@WXCONFIG_LIBS_STATIC_GL@" ; then
|
|
|
|
gllibs="@libdir@/@WXCONFIG_LIBS_STATIC_GL@"
|
|
|
|
else
|
|
|
|
gllibs="@WXCONFIG_LIBS_GL@"
|
|
|
|
fi
|
2002-12-04 14:11:26 +00:00
|
|
|
if test $inplace_flag = yes ; then
|
|
|
|
libdir="-L$inplace_builddir/lib"
|
|
|
|
fi
|
|
|
|
echo @LDFLAGS_GL@ $libdir $gllibs
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
2000-01-06 18:34:49 +00:00
|
|
|
--cc)
|
|
|
|
echo $CC
|
|
|
|
;;
|
|
|
|
--cxx)
|
|
|
|
echo $CXX
|
|
|
|
;;
|
|
|
|
--ld)
|
|
|
|
echo $LD
|
|
|
|
;;
|
2002-12-04 14:11:26 +00:00
|
|
|
--inplace)
|
|
|
|
inplace_flag=yes
|
|
|
|
inplace_builddir=`dirname $0`
|
|
|
|
inplace_include=@top_srcdir@/include
|
|
|
|
;;
|
1999-06-01 16:14:29 +00:00
|
|
|
*)
|
2001-03-03 20:26:27 +00:00
|
|
|
usage 1 1>&2
|
1999-06-01 16:14:29 +00:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|