head 1.5; access; symbols pkgsrc-2013Q2:1.5.0.4 pkgsrc-2013Q2-base:1.5 pkgsrc-2012Q4:1.5.0.2 pkgsrc-2012Q4-base:1.5 pkgsrc-2011Q4:1.4.0.20 pkgsrc-2011Q4-base:1.4 pkgsrc-2011Q3:1.4.0.18 pkgsrc-2011Q3-base:1.4 pkgsrc-2011Q2:1.4.0.16 pkgsrc-2011Q2-base:1.4 pkgsrc-2011Q1:1.4.0.14 pkgsrc-2011Q1-base:1.4 pkgsrc-2010Q4:1.4.0.12 pkgsrc-2010Q4-base:1.4 pkgsrc-2010Q3:1.4.0.10 pkgsrc-2010Q3-base:1.4 pkgsrc-2010Q2:1.4.0.8 pkgsrc-2010Q2-base:1.4 pkgsrc-2010Q1:1.4.0.6 pkgsrc-2010Q1-base:1.4 pkgsrc-2009Q4:1.4.0.4 pkgsrc-2009Q4-base:1.4 pkgsrc-2009Q3:1.4.0.2 pkgsrc-2009Q3-base:1.4 pkgsrc-2009Q1:1.2.0.6 pkgsrc-2009Q1-base:1.2 pkgsrc-2008Q4:1.2.0.4 pkgsrc-2008Q4-base:1.2 pkgsrc-2008Q3:1.2.0.2 pkgsrc-2008Q3-base:1.2 cube-native-xorg:1.1.0.2 cube-native-xorg-base:1.1; locks; strict; comment @# @; 1.5 date 2012.01.12.22.59.58; author adam; state dead; branches; next 1.4; 1.4 date 2009.09.29.06.39.30; author wiz; state Exp; branches; next 1.3; 1.3 date 2009.06.13.11.55.51; author hasso; state dead; branches; next 1.2; 1.2 date 2008.09.17.12.23.01; author joerg; state Exp; branches; next 1.1; 1.1 date 2008.07.24.12.55.20; author markd; state Exp; branches; next ; desc @@ 1.5 log @Changes 4.8.0: Featuring Qt Platform Abstraction, threaded OpenGL support, multithreaded HTTP and optimized file system access. @ text @$NetBSD: patch-at,v 1.4 2009/09/29 06:39:30 wiz Exp $ --- src/3rdparty/webkit/WebCore/platform/qt/PlatformKeyboardEventQt.cpp.orig 2009-06-20 04:57:56.000000000 +0000 +++ src/3rdparty/webkit/WebCore/platform/qt/PlatformKeyboardEventQt.cpp @@@@ -134,7 +134,7 @@@@ static String keyIdentifierForQtKeyCode( case Qt::Key_Backtab: return "U+0009"; default: - return String::format("U+%04X", toupper(keyCode)); + return String::format("U+%04X", toupper((unsigned char)keyCode)); } } @ 1.4 log @Give unsigned char argument to toupper. Fixes coredumps in Sigil when pressing "CTRL" or "BACKSPACE". Bump PKGREVISION. @ text @d1 1 a1 1 $NetBSD$ @ 1.3 log @Update to 4.5.1. Most of work done by Matthias Drochner. Upstream changelog is too massive, see http://doc.qtsoftware.com/4.5/qt4-5-intro.html as starting point. @ text @d1 1 a1 1 $NetBSD: patch-at,v 1.2 2008/09/17 12:23:01 joerg Exp $ d3 10 a12 5 --- src/3rdparty/webkit/JavaScriptCore/kjs/collector.cpp.orig 2008-04-28 15:11:16.000000000 +0200 +++ src/3rdparty/webkit/JavaScriptCore/kjs/collector.cpp @@@@ -72,10 +72,9 @@@@ extern int *__libc_stack_end; #include #endif a13 17 +#include #if HAVE(PTHREAD_NP_H) #include -#else -#include #endif #endif @@@@ -347,7 +346,7 @@@@ static inline void* currentThreadStackBa if (stackBase == 0 || thread != stackThread) { pthread_attr_t sattr; pthread_attr_init(&sattr); -#if HAVE(PTHREAD_NP_H) +#if HAVE(PTHREAD_NP_H) || defined(__NetBSD__) // e.g. on FreeBSD 5.4, neundorf@@kde.org pthread_attr_get_np(thread, &sattr); #else @ 1.2 log @Include pthread.h before including pthread_np.h. From Hasso Tepper in PR 39268. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Update qt4 to 4.4.0 Qt 4.4 introduces many new features as well as many improvements and bugfixes over the 4.3.x series. For more details, see the online documentation which is included in this distribution. The documentation is also available at http://doc.trolltech.com/4.4 The Qt version 4.4 series is binary compatible with the 4.3.x series. A long list of changes can be found in the changes-4.4.0 file in the distribution. Update OKed (and initial work provided) by adam@@.. @ text @d3 15 a17 3 --- ./src/3rdparty/webkit/JavaScriptCore/kjs/collector.cpp.orig 2008-04-29 01:11:16.000000000 +1200 +++ ./src/3rdparty/webkit/JavaScriptCore/kjs/collector.cpp @@@@ -347,7 +347,7 @@@@ static inline void* currentThreadStackBa @