diff options
author | das <das> | 2005-05-23 20:20:47 (GMT) |
---|---|---|
committer | das <das> | 2005-05-23 20:20:47 (GMT) |
commit | 953eca047bb96f6ef4a27c58aac2223d89c8aeb6 (patch) | |
tree | 4519a9987c939bdb18e3c5e65b0c50b2e5a3b05d /unix/tclUnixInit.c | |
parent | 7c70348bc43911fbdc708f54ae9cb70b12a4e6ce (diff) | |
download | tcl-953eca047bb96f6ef4a27c58aac2223d89c8aeb6.zip tcl-953eca047bb96f6ef4a27c58aac2223d89c8aeb6.tar.gz tcl-953eca047bb96f6ef4a27c58aac2223d89c8aeb6.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; } |