X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/75f4be8a9bdcd14ac40ea5480e2205f9f4ec9ba9..e835c3693b52c4508473801241ed6d0bd198164a:/wx-config.in?ds=sidebyside diff --git a/wx-config.in b/wx-config.in index 478a243796..878c325284 100755 --- a/wx-config.in +++ b/wx-config.in @@ -4,14 +4,38 @@ 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@ + +# 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 + usage 1 1>&2 fi while test $# -gt 0; do @@ -46,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 @@ -65,6 +131,9 @@ while test $# -gt 0; do --version) echo @WX_MAJOR_VERSION_NUMBER@.@WX_MINOR_VERSION_NUMBER@.@WX_RELEASE_NUMBER@ ;; + --static) + static_flag=yes + ;; --cppflags) cppflags ;; @@ -74,11 +143,34 @@ while test $# -gt 0; do --cxxflags) echo `cppflags` @CODE_GEN_FLAGS@ @CODE_GEN_FLAGS_CXX@ ;; + --ldflags) + echo @LDFLAGS_EXE@ + ;; + --rezflags) + echo @MACRESWXCONFIG@ + ;; --libs) - if test @libdir@ != /usr/lib ; then - libs="-L@libdir@" + 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 + + ;; + --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 $libs -l@WX_LIBRARY@ @EXTRA_LIBS@ + echo @LDFLAGS_GL@ $gllibs ;; --cc) echo $CC