X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d345e841da6719c3de9de784220aafafb5eb1e93..fccacb2a9de141f960850b16b7d60443297fb751:/wx-config.in diff --git a/wx-config.in b/wx-config.in index 5012430955..1e487ad561 100755 --- a/wx-config.in +++ b/wx-config.in @@ -3,13 +3,101 @@ prefix=@prefix@ exec_prefix=@exec_prefix@ exec_prefix_set=no +CC="@CC@" +GCC="@GCC@" +CXX="@CXX@" +LD="@SHARED_LD@" +srcdir=@top_srcdir@ +builddir=@top_builddir@ +cross_compiling=@cross_compiling@ +target=@host_alias@ +static_flag=@STATIC_FLAG@ -usage="\ -Usage: wx-config [--prefix[=DIR]] [--exec-prefix[=DIR]] [--version] [--libs] [--cflags]" +# return the absolute path prepending builddir to it if needed +makeabs() +{ + path=$1 + # TODO: this only works under Unix and even there it could be + # enhanced to remove ".." and "." + if [ `echo $path | sed 's/^\(.\).*/\1/'` != "/" ]; then + if [ $path = "." ]; then + path=$builddir + else + path="$builddir/$path" + fi + fi + + echo $path +} + +usage() +{ + cat <&2 - exit 1 + usage 1 1>&2 fi while test $# -gt 0; do @@ -19,6 +107,11 @@ while test $# -gt 0; do esac case $1 in + --inplace) + prefix=`makeabs $srcdir` + exec_prefix=`makeabs $builddir` + exec_prefix_set=yes + ;; --prefix=*) prefix=$optarg if test $exec_prefix_set = no ; then @@ -36,22 +129,60 @@ while test $# -gt 0; do echo $exec_prefix ;; --version) - echo 2.1.0 + echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@ + ;; + --static) + static_flag=yes + ;; + --cppflags) + cppflags ;; --cflags) - if test @includedir@ != /usr/include ; then - includes=-I@includedir@ + echo `cppflags` @CODE_GEN_FLAGS@ + ;; + --cxxflags) + echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@ + ;; + --ldflags) + echo @LDFLAGS_EXE@ + ;; + --rezflags) + echo @LIBWXMACRESWXCONFIG@ + ;; + --libs) + if test "@libdir@" != "/usr/lib" \ + -a \( "${cross_compiling}" != "yes" \ + -o "@libdir@" != "/usr/${target}/lib" \) ; + then + libs="-L@libdir@" + fi + + if test $static_flag = yes ; then + echo "$libs @LDFLAGS@ @WXCONFIG_RPATH@ @libdir@/@WXCONFIG_LIBS_STATIC@ @LIBS@ @DMALLOC_LIBS@" + else + echo $libs @LDFLAGS@ @WXCONFIG_RPATH@ @WXCONFIG_LIBS@ @DMALLOC_LIBS@ fi - includes="$includes -I@libdir@/wx/include" - echo $includes -D@TOOLKIT_DEF@ @WXDEBUG_DEFINE@ ;; - --libs) - echo -L@libdir@ @THREADS_LINK@ @WX_LINK@ @DL_LIBRARY@ @GUI_TK_LIBRARY@ @EXTRA_LINK@ @JPEG_LINK@ + --gl-libs) + 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 + echo @LDFLAGS_GL@ $gllibs + ;; + --cc) + echo $CC + ;; + --cxx) + echo $CXX + ;; + --ld) + echo $LD ;; *) - echo "${usage}" 1>&2 - exit 1 + usage 1 1>&2 ;; esac shift