X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/11bc0805dec30cdc07c17cc13d075520efd4e17a..1dbd57590d127aae1295774ec5ade4ff4d03131e:/wx-config.in diff --git a/wx-config.in b/wx-config.in index 0dbdbca3be..74ba23e94d 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_wxconfig@ +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,20 +129,68 @@ while test $# -gt 0; do echo $exec_prefix ;; --version) - echo 1.93 + echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@ + ;; + --release) + # Should echo @WX_RELEASE@ instead, but that doesn't seem to be replaced after + # configure has run on this file. + echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@ + ;; + --basename) + echo @WX_LIBRARY_BASENAME@ + ;; + --static) + static_flag=yes + ;; + --cppflags) + cppflags ;; --cflags) - if test @includedir@ != /usr/include ; then - includes=-I@includedir@ - fi - echo $includes -D@TOOLKIT_DEF@ @GUI_TK_INCLUDE@ + echo `cppflags` @CODE_GEN_FLAGS@ + ;; + --cxxflags) + echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@ + ;; + --ldflags) + echo @LDFLAGS_EXE@ + ;; + --rezflags) + echo @MACRESWXCONFIG@ ;; --libs) - echo -L@libdir@ -lwx_gtk -ldl @GUI_TK_LIBRARY@ @THREADS_LINK@ @EXTRA_LINK@ + 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@ @EXTRALIBS_GUI@ @LIBS@ @DMALLOC_LIBS@" + else + echo $libs @LDFLAGS@ @WXCONFIG_RPATH@ @WXCONFIG_LIBS@ @DMALLOC_LIBS@ + fi + + ;; + --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