X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2bffed64c5a201f0de04752dba6b25d1cc53d1e0..e835c3693b52c4508473801241ed6d0bd198164a:/wx-config.in diff --git a/wx-config.in b/wx-config.in index 990d0e63fd..878c325284 100755 --- a/wx-config.in +++ b/wx-config.in @@ -4,12 +4,32 @@ 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 <