summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordas <das>2003-05-22 01:12:50 (GMT)
committerdas <das>2003-05-22 01:12:50 (GMT)
commitbcb3bc0dc3f04c7b793635557ddc7e686db98576 (patch)
tree81b73d506bff67509a3d04be3f455a84a582d208
parentc22fc5dd49b8b650ef0adf2eb1eab1a879f61f95 (diff)
downloadtcl-bcb3bc0dc3f04c7b793635557ddc7e686db98576.zip
tcl-bcb3bc0dc3f04c7b793635557ddc7e686db98576.tar.gz
tcl-bcb3bc0dc3f04c7b793635557ddc7e686db98576.tar.bz2
* macosx/tclMacOSXBundle.c: fixed a problem that caused only the
first call to Tcl_MacOSXOpenVersionedBundleResources() for a given bundle indentifier to succeed. This caused the tcl runtime library not to be found in all interps created after the inital one.
-rw-r--r--ChangeLog7
-rw-r--r--macosx/tclMacOSXBundle.c10
2 files changed, 17 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 620fc60..01c2d78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2003-05-22 Daniel Steffen <das@users.sourceforge.net>
+
+ * macosx/tclMacOSXBundle.c: fixed a problem that caused only the
+ first call to Tcl_MacOSXOpenVersionedBundleResources() for a given
+ bundle indentifier to succeed. This caused the tcl runtime library
+ not to be found in all interps created after the inital one.
+
2003-05-19 Kevin B. Kenny <kennykb@hippolyta>
* unix/tclUnixTime.c: Corrected a bug in conversion of non-ASCII
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) {