diff options
| author | das <das> | 2005-05-23 20:20:47 (GMT) |
|---|---|---|
| committer | das <das> | 2005-05-23 20:20:47 (GMT) |
| commit | c82907b32ad076b1f4a81fa97829568af398c91e (patch) | |
| tree | 4519a9987c939bdb18e3c5e65b0c50b2e5a3b05d /unix/tclUnixInit.c | |
| parent | 2417c2f27baa898299c4687c62905ada1b64f0bb (diff) | |
| download | tcl-c82907b32ad076b1f4a81fa97829568af398c91e.zip tcl-c82907b32ad076b1f4a81fa97829568af398c91e.tar.gz tcl-c82907b32ad076b1f4a81fa97829568af398c91e.tar.bz2 | |
* macosx/Makefile:
* macosx/README:
* macosx/Tcl-Info.plist.in (new file):
* unix/Makefile.in:
* unix/configure.in:
* unix/tcl.m4:
* unix/tclUnixInit.c: moved all Darwin framework build support from
macosx/Makefile into the standard unix configure/make buildsystem, the
macosx/Makefile is no longer required to build Tcl.framework (but its
functionality is still available for backwards compatibility).
* unix/configure: autoconf-2.59
Diffstat (limited to 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index ec708f2..5c833b4 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.57 2005/05/14 20:46:48 das Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.58 2005/05/23 20:21:02 das Exp $ */ #include "tclInt.h" @@ -1138,7 +1138,7 @@ MacOSXGetLibraryPath(Tcl_Interp *interp, int maxPathLen, char *tclLibPath) int foundInFramework = TCL_ERROR; #ifdef TCL_FRAMEWORK foundInFramework = Tcl_MacOSXOpenVersionedBundleResources(interp, - "com.tcltk.tcllibrary", TCL_VERSION, 0, maxPathLen, tclLibPath); + "com.tcltk.tcllibrary", TCL_FRAMEWORK_VERSION, 0, maxPathLen, tclLibPath); #endif return foundInFramework; } |
