diff options
author | das <das> | 2005-05-24 02:32:15 (GMT) |
---|---|---|
committer | das <das> | 2005-05-24 02:32:15 (GMT) |
commit | 343055908105d05cde7d76e4920a7c2bc913cd8e (patch) | |
tree | be2a4452d69b3ccea3d4e43601ada02a893f5a7b /macosx | |
parent | fd9c7b478a0e22830d8e3f08e985cfb64fe26797 (diff) | |
download | tk-343055908105d05cde7d76e4920a7c2bc913cd8e.zip tk-343055908105d05cde7d76e4920a7c2bc913cd8e.tar.gz tk-343055908105d05cde7d76e4920a7c2bc913cd8e.tar.bz2 |
fix for non-framework TkAqua build
Diffstat (limited to 'macosx')
-rw-r--r-- | macosx/tkMacOSXInit.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/macosx/tkMacOSXInit.c b/macosx/tkMacOSXInit.c index 14e9cbf..780bcc3 100644 --- a/macosx/tkMacOSXInit.c +++ b/macosx/tkMacOSXInit.c @@ -10,7 +10,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tkMacOSXInit.c,v 1.10 2005/05/23 20:24:59 das Exp $ + * RCS: @(#) $Id: tkMacOSXInit.c,v 1.11 2005/05/24 02:32:15 das Exp $ */ #include "tkInt.h" @@ -160,8 +160,11 @@ TkpInit(interp) * FIXME: Should we come up with a more generic way of doing this? */ +#ifdef TK_FRAMEWORK if (Tcl_MacOSXOpenVersionedBundleResources(interp, - "com.tcltk.tklibrary", TK_FRAMEWORK_VERSION, 1, PATH_MAX, tkLibPath) != TCL_OK) { + "com.tcltk.tklibrary", TK_FRAMEWORK_VERSION, 1, PATH_MAX, tkLibPath) != TCL_OK) +#endif + { /* Tk.framework not found, check if resource file is open */ Handle rsrc = Get1NamedResource('CURS', "\phand"); if (rsrc) { |