diff options
author | das <das> | 2003-05-22 01:15:33 (GMT) |
---|---|---|
committer | das <das> | 2003-05-22 01:15:33 (GMT) |
commit | eb3219aaa38da99c46978eae1194802003a1065b (patch) | |
tree | 6c0cb6eaa359ac492918137b0a2981f722776d70 /macosx/tclMacOSXBundle.c | |
parent | 2268c2b60a21f8fa22f1ca2a67ec80662ff196cb (diff) | |
download | tcl-eb3219aaa38da99c46978eae1194802003a1065b.zip tcl-eb3219aaa38da99c46978eae1194802003a1065b.tar.gz tcl-eb3219aaa38da99c46978eae1194802003a1065b.tar.bz2 |
* macosx/tclMacOSXBundle.c: fixed a problem that caused only the
first call to Tcl_MacOSXOpenVersionedBundleResources() for a given
bundle identifier to succeed. This caused the tcl runtime library
not to be found in all interps created after the inital one.
Diffstat (limited to 'macosx/tclMacOSXBundle.c')
-rw-r--r-- | macosx/tclMacOSXBundle.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/macosx/tclMacOSXBundle.c b/macosx/tclMacOSXBundle.c index 88def57..5018aa8 100644 --- a/macosx/tclMacOSXBundle.c +++ b/macosx/tclMacOSXBundle.c @@ -138,6 +138,16 @@ Tcl_MacOSXOpenVersionedBundleResources( bundleVersion, kCFStringEncodingUTF8); CFURLRef bundleURL = CFBundleCopyBundleURL(bundleRef); if (bundleURL) { + CFStringRef bundleTailRef = CFURLCopyLastPathComponent(bundleURL); + if (bundleTailRef) { + if (CFStringCompare(bundleTailRef,bundleVersionRef,0) + == kCFCompareEqualTo) { + versionedBundleRef = bundleRef; + } + CFRelease(bundleTailRef); + } + } + if (bundleURL && !versionedBundleRef) { CFURLRef versURL = CFURLCreateCopyAppendingPathComponent(NULL, bundleURL, CFSTR("Versions"), TRUE); if (versURL) { |