X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/40f7145ca55ccf1b197e70acf79bbd4aa5d85145..52ece50b3eccb9e8ac3b67a06c1603036d4a901d:/wx-config.in?ds=sidebyside diff --git a/wx-config.in b/wx-config.in index f0380ce431..74ba23e94d 100755 --- a/wx-config.in +++ b/wx-config.in @@ -4,17 +4,37 @@ 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=no +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 <