diff options
author | hobbs <hobbs> | 2005-05-25 18:49:33 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2005-05-25 18:49:33 (GMT) |
commit | aa1be7ab30d1c2ca8e670adf84553da846c1fc07 (patch) | |
tree | 95ec1eb66b12a99c5f22d0d70cd10664ed9064c9 /unix/configure.in | |
parent | 4b323ede98d36524442f50fe67966fbe2e0c91b8 (diff) | |
download | tk-aa1be7ab30d1c2ca8e670adf84553da846c1fc07.zip tk-aa1be7ab30d1c2ca8e670adf84553da846c1fc07.tar.gz tk-aa1be7ab30d1c2ca8e670adf84553da846c1fc07.tar.bz2 |
* unix/configure, unix/configure.in: ensure false Tcl.framework is
only created with --enable-framework
Diffstat (limited to 'unix/configure.in')
-rw-r--r-- | unix/configure.in | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/unix/configure.in b/unix/configure.in index 94a4ee1..9905d35 100644 --- a/unix/configure.in +++ b/unix/configure.in @@ -3,7 +3,7 @@ dnl This file is an input file used by the GNU "autoconf" program to dnl generate the file "configure", which is run during Tk installation dnl to configure the system for the local environment. # -# RCS: @(#) $Id: configure.in,v 1.83.2.15 2005/05/24 04:21:34 das Exp $ +# RCS: @(#) $Id: configure.in,v 1.83.2.16 2005/05/25 18:49:49 hobbs Exp $ AC_INIT(../generic/tk.h) AC_PREREQ(2.13) @@ -415,14 +415,15 @@ if test "$FRAMEWORK_BUILD" = "1" ; then tk_config_files="${tk_config_files} [Tk-Info.plist:../macosx/Tk-Info.plist.in]" # Construct a fake local framework structure to make linking with # '-framework Tk' and running of tktest work - AC_OUTPUT_COMMANDS([n=Tk && echo "creating $n.framework" && - f=$n.framework && v=Versions/$VERSION && - rm -rf $f && mkdir -p $f/$v/Resources && - ln -s $v/$n $v/Resources $f && ln -s ../../../$n $f/$v && - ln -s ../../../../$n-Info.plist $f/$v/Resources/Info.plist && - if test $tk_aqua = yes; then ln -s ../../../../$n.rsrc $f/$v/Resources; fi && - unset n f v - ], VERSION=${TK_VERSION} && tk_aqua=${tk_aqua}) + AC_OUTPUT_COMMANDS([test "$FRAMEWORK_BUILD" = "1" && + n=Tk && f=$n.framework && v=Versions/$VERSION && + echo "creating $f" && rm -rf $f && mkdir -p $f/$v/Resources && + ln -s $v/$n $v/Resources $f && ln -s ../../../$n $f/$v && + ln -s ../../../../$n-Info.plist $f/$v/Resources/Info.plist && + if test $tk_aqua = yes; then ln -s ../../../../$n.rsrc $f/$v/Resources; fi && + unset n f v + ], [VERSION=${TK_VERSION} FRAMEWORK_BUILD=${FRAMEWORK_BUILD} + tk_aqua=${tk_aqua}]) LD_LIBRARY_PATH_VAR="DYLD_FRAMEWORK_PATH" if test "${libdir}" = '${exec_prefix}/lib'; then # override libdir default |