summaryrefslogtreecommitdiff
path: root/x11/tk/patches
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2014-11-22 15:58:44 +0000
committeradam <adam@pkgsrc.org>2014-11-22 15:58:44 +0000
commit9a2166f509932ecd5314f2300dafe1e2eb6601f1 (patch)
tree3b8ea93a99ef6dc5075a65901af3b7dd7a738c6d /x11/tk/patches
parenta6b9d3152a0114f1a21a1dc8c2c9a82002d5dcf6 (diff)
downloadpkgsrc-9a2166f509932ecd5314f2300dafe1e2eb6601f1.tar.gz
Changes 8.6.3:
Cocoa: Crash after [$button destroy] Cocoa: button and scroll display fixes Cocoa: improved drawing performance Phony button clicks from browsers to plugin [text] elide changes advance epoch fix PNG transparency appearance Win: updated file dialogs OSX: Improved ttk notebook tab metrics for Yosemite [scale -digits $bigValue] segfault [scale] handling of negative resolution
Diffstat (limited to 'x11/tk/patches')
-rw-r--r--x11/tk/patches/patch-macosx_tkMacOSXInit.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/x11/tk/patches/patch-macosx_tkMacOSXInit.c b/x11/tk/patches/patch-macosx_tkMacOSXInit.c
deleted file mode 100644
index ab0822b81ee..00000000000
--- a/x11/tk/patches/patch-macosx_tkMacOSXInit.c
+++ /dev/null
@@ -1,20 +0,0 @@
-$NetBSD: patch-macosx_tkMacOSXInit.c,v 1.1 2014/10/31 21:11:18 adam Exp $
-
-Fix for Mac crash on Yosemite because of changes in version checking,
-see Tk Source Code Check-in [e49c25c711].
-
---- macosx/tkMacOSXInit.c.orig 2014-10-31 20:34:20.000000000 +0000
-+++ macosx/tkMacOSXInit.c
-@@ -236,7 +236,11 @@ TkpInit(
- if (!uname(&name)) {
- tkMacOSXMacOSXVersion = (strtod(name.release, NULL) + 96) * 10;
- }
-- if (tkMacOSXMacOSXVersion &&
-+ /*Check for new versioning scheme on Yosemite (10.10) and later.*/
-+ if (MAC_OS_X_VERSION_MIN_REQUIRED > 100000) {
-+ tkMacOSXMacOSXVersion = MAC_OS_X_VERSION_MIN_REQUIRED/100;
-+ }
-+ if (tkMacOSXMacOSXVersion && MAC_OS_X_VERSION_MIN_REQUIRED < 100000 &&
- tkMacOSXMacOSXVersion/10 < MAC_OS_X_VERSION_MIN_REQUIRED/10) {
- Tcl_Panic("Mac OS X 10.%d or later required !",
- (MAC_OS_X_VERSION_MIN_REQUIRED/10)-100);