diff options
author | das <das> | 2002-09-10 09:59:15 (GMT) |
---|---|---|
committer | das <das> | 2002-09-10 09:59:15 (GMT) |
commit | 6d12894460cf9a45380c716dd6b9c5f4f030053f (patch) | |
tree | 92c15956be96895ae65a5ae5d75c9049ac9145db /unix/Makefile.in | |
parent | 742855d0d4eca7702b6023aa18ecce61b2bec00a (diff) | |
download | tk-6d12894460cf9a45380c716dd6b9c5f4f030053f.zip tk-6d12894460cf9a45380c716dd6b9c5f4f030053f.tar.gz tk-6d12894460cf9a45380c716dd6b9c5f4f030053f.tar.bz2 |
* unix/Makefile.in: added DYLIB_INSTALL_DIR variable for Darwin
and set it to default value ${LIB_RUNTIME_DIR}
* unix/tcl.m4 (Darwin): use DYLIB_INSTALL_DIR instead of
LIB_RUNTIME_DIR in the -install_name argument to ld.
* unix/configure: regen.
* macosx/Wish.pbproj/project.pbxproj:
* macosx/Makefile: added support for building Tcl as an embedded
framework, i.e. using an dyld install_name containing
@executable_path/../Frameworks via the new DYLIB_INSTALL_DIR
unix/Makefile variable.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index f8a3d93..1b280a7 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.81 2002/08/31 13:28:45 das Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.82 2002/09/10 09:59:15 das Exp $ # Current Tk version; used in various names. @@ -240,6 +240,9 @@ TK_SHLIB_LD_EXTRAS = @TK_SHLIB_LD_EXTRAS@ CC_SEARCH_FLAGS = @CC_SEARCH_FLAGS@ LD_SEARCH_FLAGS = @LD_SEARCH_FLAGS@ +# support for embedded libraries on Darwin / Mac OS X +DYLIB_INSTALL_DIR = ${LIB_RUNTIME_DIR} + #---------------------------------------------------------------- # The information below is modified by the configure script when # Makefile is generated from Makefile.in. You shouldn't normally |