diff options
author | das <das> | 2005-05-24 02:32:15 (GMT) |
---|---|---|
committer | das <das> | 2005-05-24 02:32:15 (GMT) |
commit | 0ee4610d8a6b714d2167eeac6932d00071ca1d3f (patch) | |
tree | be2a4452d69b3ccea3d4e43601ada02a893f5a7b /macosx | |
parent | 6b03b2aefc69989f75c2e3e72df255db6b9165ce (diff) | |
download | tk-0ee4610d8a6b714d2167eeac6932d00071ca1d3f.zip tk-0ee4610d8a6b714d2167eeac6932d00071ca1d3f.tar.gz tk-0ee4610d8a6b714d2167eeac6932d00071ca1d3f.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) { |