diff --git a/.gitignore b/.gitignore index e5a0a79..3c3b9cc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,4 @@ /hi128-app-qt4-logo.png /hi48-app-qt4-logo.png -/gstreamer-logo.svg -/hi128-phonon-gstreamer.png -/hi16-phonon-gstreamer.png -/hi22-phonon-gstreamer.png -/hi32-phonon-gstreamer.png -/hi48-phonon-gstreamer.png -/hi64-phonon-gstreamer.png -/qt-everywhere-opensource-src-4.7.4.tar.gz -/qt-everywhere-opensource-src-4.8.0.tar.gz -/qt-everywhere-opensource-src-4.8.1.tar.gz /qt-everywhere-opensource-src-4.8.2.tar.gz +/qt-everywhere-opensource-src-4.8.3.tar.gz diff --git a/qt-4.8.1-webkit-no_Werror.patch b/qt-4.8.1-webkit-no_Werror.patch deleted file mode 100644 index ef5d55d..0000000 --- a/qt-4.8.1-webkit-no_Werror.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -up qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri.no_Werror qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri ---- qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri.no_Werror 2012-03-14 15:01:29.000000000 +0100 -+++ qt-everywhere-opensource-src-4.8.1/src/3rdparty/webkit/Source/WebKit.pri 2012-03-28 17:12:33.391294004 +0200 -@@ -102,8 +102,6 @@ CONFIG -= warn_on - - # Treat warnings as errors on x86/Linux/GCC - linux-g++* { -- !CONFIG(standalone_package):isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386): QMAKE_CXXFLAGS += -Werror -- - greaterThan(QT_GCC_MAJOR_VERSION, 3):greaterThan(QT_GCC_MINOR_VERSION, 5) { - if (!contains(QMAKE_CXXFLAGS, -std=c++0x) && !contains(QMAKE_CXXFLAGS, -std=gnu++0x)) { - # We need to deactivate those warnings because some names conflicts with upcoming c++0x types (e.g.nullptr). diff --git a/qt-Fix-cursor-truncate-to-include-line-position.patch b/qt-Fix-cursor-truncate-to-include-line-position.patch deleted file mode 100644 index 40a3159..0000000 --- a/qt-Fix-cursor-truncate-to-include-line-position.patch +++ /dev/null @@ -1,32 +0,0 @@ -From ca89c49fa2c5cbb3945897046f33eed9f7da846c Mon Sep 17 00:00:00 2001 -From: Jiang Jiang -Date: Tue, 3 Jul 2012 10:17:49 +0200 -Subject: Fix cursor truncate to include line position - -Since we could have moved the line position (QTextLine::setPosition), -the truncating position should be adjusted with that. - -Change-Id: Ie1acd4a1b6a4adfbeeb9ce8ee2dfa19d992470e8 -Reviewed-by: Eskil Abrahamsen Blomfeldt ---- - src/gui/text/qtextlayout.cpp | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/src/gui/text/qtextlayout.cpp b/src/gui/text/qtextlayout.cpp -index 16f7150..52f2793 100644 ---- a/src/gui/text/qtextlayout.cpp -+++ b/src/gui/text/qtextlayout.cpp -@@ -2616,8 +2616,8 @@ qreal QTextLine::cursorToX(int *cursorPos, Edge edge) const - x += eng->offsetInLigature(si, pos, end, glyph_pos); - } - -- if (eng->option.wrapMode() != QTextOption::NoWrap && x > line.width) -- x = line.width; -+ if (eng->option.wrapMode() != QTextOption::NoWrap && x > line.x + line.width) -+ x = line.x + line.width; - - *cursorPos = pos + si->position; - return x.toReal(); --- -1.7.10.4 - diff --git a/qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231.patch b/qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231.patch deleted file mode 100644 index e24cb5c..0000000 --- a/qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/JavaScriptCore/wtf/gobject/GTypedefs.h qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231/src/3rdparty/webkit/Source/JavaScriptCore/wtf/gobject/GTypedefs.h ---- qt-everywhere-opensource-src-4.8.0/src/3rdparty/webkit/Source/JavaScriptCore/wtf/gobject/GTypedefs.h 2011-10-04 05:44:31.000000000 +0200 -+++ qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231/src/3rdparty/webkit/Source/JavaScriptCore/wtf/gobject/GTypedefs.h 2011-10-28 02:12:16.000000000 +0200 -@@ -52,7 +52,7 @@ - typedef struct _GHashTable GHashTable; - typedef struct _GInputStream GInputStream; - typedef struct _GList GList; --typedef struct _GMutex GMutex; -+typedef union _GMutex GMutex; - typedef struct _GPatternSpec GPatternSpec; - typedef struct _GPollableOutputStream GPollableOutputStream; - typedef struct _GSocketClient GSocketClient; diff --git a/qt-everywhere-opensource-src-4.8.1-icu_no_debug.patch b/qt-everywhere-opensource-src-4.8.1-icu_no_debug.patch deleted file mode 100644 index ddf3184..0000000 --- a/qt-everywhere-opensource-src-4.8.1-icu_no_debug.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -up qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp.icu_no_spam qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp ---- qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp.icu_no_spam 2012-03-14 09:01:17.000000000 -0500 -+++ qt-everywhere-opensource-src-4.8.1/src/corelib/tools/qlocale_icu.cpp 2012-04-17 07:30:01.652251482 -0500 -@@ -83,7 +83,9 @@ bool qt_initIcu(const QString &localeStr - // resolve libicui18n - QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT)); - if (!lib.load()) { -+#ifndef QT_NO_DEBUG - qWarning() << "Unable to load library icui18n" << lib.errorString(); -+#endif - status = ErrorLoading; - return false; - } -@@ -112,7 +114,9 @@ bool qt_initIcu(const QString &localeStr - // resolve libicuuc - QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT)); - if (!ucLib.load()) { -+#ifndef QT_NO_DEBUG - qWarning() << "Unable to load library icuuc" << ucLib.errorString(); -+#endif - status = ErrorLoading; - return false; - } diff --git a/qt-everywhere-opensource-src-4.8.1-qdbusconnection_no_debug.patch b/qt-everywhere-opensource-src-4.8.1-qdbusconnection_no_debug.patch deleted file mode 100644 index 8d60dab..0000000 --- a/qt-everywhere-opensource-src-4.8.1-qdbusconnection_no_debug.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -up qt-everywhere-opensource-src-4.8.1/src/dbus/qdbusconnection.cpp.qdbusconnection_nodebug qt-everywhere-opensource-src-4.8.1/src/dbus/qdbusconnection.cpp ---- qt-everywhere-opensource-src-4.8.1/src/dbus/qdbusconnection.cpp.qdbusconnection_nodebug 2012-04-17 07:18:51.536629078 -0500 -+++ qt-everywhere-opensource-src-4.8.1/src/dbus/qdbusconnection.cpp 2012-04-17 07:18:56.910561895 -0500 -@@ -1109,8 +1109,10 @@ public: - // make sure this connection is running on the main thread - QCoreApplication *instance = QCoreApplication::instance(); - if (!instance) { -+#ifndef QT_NO_DEBUG - qWarning("QDBusConnection: %s D-Bus connection created before QCoreApplication. Application may misbehave.", - type == SessionBus ? "session" : type == SystemBus ? "system" : "generic"); -+#endif - } else { - QDBusConnectionPrivate::d(*this)->moveToThread(instance->thread()); - } diff --git a/qt-everywhere-opensource-src-4.8.1-type.patch b/qt-everywhere-opensource-src-4.8.1-type.patch deleted file mode 100644 index 99aafbe..0000000 --- a/qt-everywhere-opensource-src-4.8.1-type.patch +++ /dev/null @@ -1,26 +0,0 @@ -diff -up qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.cpp.me qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.cpp ---- qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.cpp.me 2012-05-16 14:45:30.542709580 +0200 -+++ qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.cpp 2012-05-16 14:49:02.266017265 +0200 -@@ -61,8 +61,8 @@ const char *QElfParser::parseSectionHead - + sizeof(qelfaddr_t); // sh_addr - sh->offset = read(data); - data += sizeof(qelfoff_t); // sh_offset -- sh->size = read(data); -- data += sizeof(qelfword_t); // sh_size -+ sh->size = read(data); -+ data += sizeof(qelfoff_t); // sh_size - return data; - } - -diff -up qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.h.me qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.h ---- qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.h.me 2012-05-16 14:45:41.006724793 +0200 -+++ qt-everywhere-opensource-src-4.8.1/src/corelib/plugin/qelfparser_p.h 2012-05-16 14:47:49.017910811 +0200 -@@ -80,7 +80,7 @@ public: - qelfword_t name; - qelfword_t type; - qelfoff_t offset; -- qelfword_t size; -+ qelfoff_t size; - }; - - int m_endian; diff --git a/qt-everywhere-opensource-src-4.8.3-icu_no_debug.patch b/qt-everywhere-opensource-src-4.8.3-icu_no_debug.patch new file mode 100644 index 0000000..9c53f3c --- /dev/null +++ b/qt-everywhere-opensource-src-4.8.3-icu_no_debug.patch @@ -0,0 +1,23 @@ +diff -up qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp.icu_no_debug qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp +--- qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp.icu_no_debug 2012-09-06 02:33:45.000000000 -0500 ++++ qt-everywhere-opensource-src-4.8.3/src/corelib/tools/qlocale_icu.cpp 2012-09-11 09:04:21.542379795 -0500 +@@ -84,7 +84,9 @@ bool qt_initIcu(const QString &localeStr + QLibrary lib(QLatin1String("icui18n"), QLatin1String(U_ICU_VERSION_SHORT)); + lib.setLoadHints(QLibrary::ImprovedSearchHeuristics); + if (!lib.load()) { ++#ifndef QT_NO_DEBUG + qWarning() << "Unable to load library icui18n" << lib.errorString(); ++#endif + status = ErrorLoading; + return false; + } +@@ -114,7 +116,9 @@ bool qt_initIcu(const QString &localeStr + QLibrary ucLib(QLatin1String("icuuc"), QLatin1String(U_ICU_VERSION_SHORT)); + ucLib.setLoadHints(QLibrary::ImprovedSearchHeuristics); + if (!ucLib.load()) { ++#ifndef QT_NO_DEBUG + qWarning() << "Unable to load library icuuc" << ucLib.errorString(); ++#endif + status = ErrorLoading; + return false; + } diff --git a/qt-everywhere-opensource-src-4.8.3-no_Werror.patch b/qt-everywhere-opensource-src-4.8.3-no_Werror.patch new file mode 100644 index 0000000..86dcc28 --- /dev/null +++ b/qt-everywhere-opensource-src-4.8.3-no_Werror.patch @@ -0,0 +1,12 @@ +diff -up qt-everywhere-opensource-src-4.8.3/src/3rdparty/webkit/Source/WebKit.pri.no_Werror qt-everywhere-opensource-src-4.8.3/src/3rdparty/webkit/Source/WebKit.pri +--- qt-everywhere-opensource-src-4.8.3/src/3rdparty/webkit/Source/WebKit.pri.no_Werror 2012-09-06 02:33:50.000000000 -0500 ++++ qt-everywhere-opensource-src-4.8.3/src/3rdparty/webkit/Source/WebKit.pri 2012-09-11 09:03:19.152159783 -0500 +@@ -102,7 +102,7 @@ CONFIG -= warn_on + + # Treat warnings as errors on x86/Linux/GCC + linux-g++* { +- !CONFIG(standalone_package):if(isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386)): QMAKE_CXXFLAGS += -Werror ++ #!CONFIG(standalone_package):if(isEqual(QT_ARCH,x86_64)|isEqual(QT_ARCH,i386)): QMAKE_CXXFLAGS += -Werror + + greaterThan(QT_GCC_MAJOR_VERSION, 3):greaterThan(QT_GCC_MINOR_VERSION, 5) { + if (!contains(QMAKE_CXXFLAGS, -std=c++0x) && !contains(QMAKE_CXXFLAGS, -std=gnu++0x)) { diff --git a/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch b/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch new file mode 100644 index 0000000..dd3a5a0 --- /dev/null +++ b/qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch @@ -0,0 +1,14 @@ +diff -up qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp.qdbusconnection_no_debug.patch qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp +--- qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp.qdbusconnection_no_debug.patch 2012-09-06 02:33:44.000000000 -0500 ++++ qt-everywhere-opensource-src-4.8.3/src/dbus/qdbusconnection.cpp 2012-09-11 08:55:29.854026815 -0500 +@@ -1109,8 +1109,10 @@ public: + // make sure this connection is running on the main thread + QCoreApplication *instance = QCoreApplication::instance(); + if (!instance) { ++#ifndef QT_NO_DEBUG + qWarning("QDBusConnection: %s D-Bus connection created before QCoreApplication. Application may misbehave.", + type == SessionBus ? "session" : type == SystemBus ? "system" : "generic"); ++#endif + } else if (QDBusConnectionPrivate::d(*this)) { + QDBusConnectionPrivate::d(*this)->moveToThread(instance->thread()); + } diff --git a/qt-everywhere-opensource-src-4.8.3-qdevice_pri.patch b/qt-everywhere-opensource-src-4.8.3-qdevice_pri.patch new file mode 100644 index 0000000..72ae7f4 --- /dev/null +++ b/qt-everywhere-opensource-src-4.8.3-qdevice_pri.patch @@ -0,0 +1,11 @@ +diff -up qt-everywhere-opensource-src-4.8.3/mkspecs/features/device_config.prf.qmake_fix qt-everywhere-opensource-src-4.8.3/mkspecs/features/device_config.prf +--- qt-everywhere-opensource-src-4.8.3/mkspecs/features/device_config.prf.qmake_fix 2012-09-10 20:36:35.000000000 -0500 ++++ qt-everywhere-opensource-src-4.8.3/mkspecs/features/device_config.prf 2012-09-28 09:06:48.732819678 -0500 +@@ -1,6 +1,6 @@ + # Load generated qdevice.pri + isEmpty(QT_BUILD_TREE): QT_BUILD_TREE = $$fromfile($$_QMAKE_CACHE_, QT_BUILD_TREE) +-isEmpty(QT_BUILD_TREE): QT_BUILD_TREE = . # where to get? ++isEmpty(QT_BUILD_TREE): QT_BUILD_TREE = $[[QT_INSTALL_DATA]. + + DEVICE_PRI = $$QT_BUILD_TREE/mkspecs/qdevice.pri + diff --git a/qt.spec b/qt.spec index f40fd88..25cf8e6 100644 --- a/qt.spec +++ b/qt.spec @@ -15,14 +15,14 @@ Summary: Qt toolkit Name: qt Epoch: 1 -Version: 4.8.2 -Release: 7%{?dist} +Version: 4.8.3 +Release: 4%{?dist} # See LGPL_EXCEPTIONS.txt, LICENSE.GPL3, respectively, for exception details License: (LGPLv2 with exceptions or GPLv3 with exceptions) and ASL 2.0 and BSD and FTL and MIT Group: System Environment/Libraries Url: http://qt.nokia.com/ -Source0: http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-%{version}.tar.gz +Source0: http://releases.qt-project.org/qt4/source/qt-everywhere-opensource-src-%{version}%{?pre:-%{pre}}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) Obsoletes: qt4 < %{version}-%{release} @@ -53,7 +53,7 @@ Patch24: qt-everywhere-opensource-src-4.8.0-rc1-moc-boost148.patch # hack out largely useless (to users) warnings about qdbusconnection # (often in kde apps), keep an eye on https://git.reviewboard.kde.org/r/103699/ -Patch25: qt-everywhere-opensource-src-4.8.1-qdbusconnection_no_debug.patch +Patch25: qt-everywhere-opensource-src-4.8.3-qdbusconnection_no_debug.patch # lrelease-qt4 tries to run qmake not qmake-qt4 (http://bugzilla.redhat.com/820767) Patch26: qt-everywhere-opensource-src-4.8.1-linguist_qmake-qt4.patch @@ -83,7 +83,7 @@ Patch67: qt-everywhere-opensource-src-4.8.0-beta1-s390.patch # https://bugs.webkit.org/show_bug.cgi?id=63941 # -Wall + -Werror = fail -Patch68: qt-4.8.1-webkit-no_Werror.patch +Patch68: qt-everywhere-opensource-src-4.8.3-no_Werror.patch # revert qlist.h commit that seems to induce crashes in qDeleteAll= 2.31 -# fixes FTBFS: https://bugs.webkit.org/show_bug.cgi?id=69840 -Patch73: qt-everywhere-opensource-src-4.8.0-qtwebkit-glib231.patch - # workaround # sql/drivers/tds/qsql_tds.cpp:341:49: warning: dereferencing type-punned pointer will break strict-aliasing rules [-Wstrict-aliasing] Patch74: qt-everywhere-opensource-src-4.7.4-tds_no_strict_aliasing.patch @@ -106,7 +102,7 @@ Patch74: qt-everywhere-opensource-src-4.7.4-tds_no_strict_aliasing.patch Patch76: qt-everywhere-opensource-src-4.8.0-s390-atomic.patch # don't spam in release/no_debug mode if libicu is not present at runtime -Patch77: qt-everywhere-opensource-src-4.8.1-icu_no_debug.patch +Patch77: qt-everywhere-opensource-src-4.8.3-icu_no_debug.patch # gcc doesn't support flag -fuse-ld=gold Patch80: qt-everywhere-opensource-src-4.8.0-ld-gold.patch @@ -117,15 +113,13 @@ Patch81: ./qt-everywhere-opensource-src-4.8.2--assistant-crash.patch # upstream patches # http://codereview.qt-project.org/#change,22006 Patch100: qt-everywhere-opensource-src-4.8.1-qtgahandle.patch -# text cursor blinks not in the current cell (kde#296490) -Patch101: qt-Fix-cursor-truncate-to-include-line-position.patch -# fix crash on big endian machines -# https://bugreports.qt-project.org/browse/QTBUG-22960 -Patch102: qt-everywhere-opensource-src-4.8.1-type.patch +# find qdevice.pri even for installed qt builds +# https://codereview.qt-project.org/#change,34507 +Patch101: qt-everywhere-opensource-src-4.8.3-qdevice_pri.patch # fix JIT crash # https://bugreports.qt-project.org/browse/QTBUG-23871 # https://bugs.kde.org/show_bug.cgi?id=297661 -# REVERT for now, http://bugzilla.redhat.com/853587 +# REVERT for now, http://bugzilla.redhat.com/853587, https://bugreports.qt-project.org/browse/QTBUG-27322 Patch103: qt-Fix-JIT-crash-on-x86-64-avoid-32-bit-branch-offset-o.patch # security patches @@ -442,7 +436,7 @@ rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags %patch15 -p1 -b .enable_ft_lcdfilter %patch23 -p1 -b .glib_eventloop_nullcheck %patch24 -p1 -b .moc-boost148 -%patch25 -p1 -b .qdbusconnection_no_debug.patch +%patch25 -p1 -b .qdbusconnection_no_debug %patch26 -p1 -b .linguist_qtmake-qt4 %patch27 -p1 -b .qt3support_debuginfo ## TODO: still worth carrying? if so, upstream it. @@ -457,11 +451,6 @@ rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags %patch69 -p1 -b .QTBUG-22037 %patch70 -p1 -b .QTBUG-14724 %patch71 -p1 -b .QTBUG-21900 -%if 0%{?fedora} > 16 || 0%{?rhel} > 6 -# This quick fix works ONLY with GLib >= 2.31. It's harder to fix this portably. -# See https://bugs.webkit.org/show_bug.cgi?id=69840 for the gory details. -%patch73 -p1 -b .qtwebkit-glib231 -%endif %patch74 -p1 -b .tds_no_strict_aliasing %patch76 -p1 -b .s390-atomic %patch77 -p1 -b .icu_no_debug @@ -470,9 +459,9 @@ rm -fv mkspecs/linux-g++*/qmake.conf.multilib-optflags # upstream patches %patch100 -p1 -b .QTgaHandler -%patch101 -p1 -b .fix_cursor_blink -%patch102 -p1 -b .bigendian -#patch103 -p1 -b .QtScript_JIT +%patch101 -p1 -b .qdevice_pri +## 4.8.3 includes this patch, revert it to avoid regressions for now -- rex +%patch103 -p1 -R -b .QtScript_JIT # security fixes %patch200 -p1 -b .CVE-2011-3922 @@ -496,8 +485,12 @@ RPM_OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed 's|-fexceptions||g'` sed -i -e "s|-O2|$RPM_OPT_FLAGS|g" \ mkspecs/%{platform}/qmake.conf +sed -i -e "s|^\(QMAKE_LFLAGS_RELEASE.*\)|\1 $RPM_LD_FLAGS|" \ + mkspecs/common/g++-unix.conf + # undefine QMAKE_STRIP, so we get useful -debuginfo pkgs -sed -i -e "s|^QMAKE_STRIP.*=.*|QMAKE_STRIP =|" mkspecs/common/linux.conf +sed -i -e "s|^QMAKE_STRIP.*=.*|QMAKE_STRIP =|" \ + mkspecs/common/linux.conf # set correct lib path if [ "%{_lib}" == "lib64" ] ; then @@ -1105,9 +1098,19 @@ fi %changelog -* Thu Sep 27 2012 Rex Dieter 1:4.8.2-7 +* Sat Oct 20 2012 Rex Dieter 1:4.8.3-4 +- $RPM_LD_FLAGS should be propagated to qmake's defaults (#868554) + +* Fri Sep 28 2012 Rex Dieter 1:4.8.3-3 +- find qdevice.pri even for installed qt builds + +* Thu Sep 27 2012 Rex Dieter 1:4.8.3-2 - upstream disable-SSL-compression patch +* Thu Sep 13 2012 Rex Dieter - 1:4.8.3-1 +- qt-4.8.3 final +- revert QtScript-JIT commit + * Tue Sep 04 2012 Rex Dieter 4.8.2-6 - revert "fix QtScript JIT crash" patch, causes frequent segmentation faults (#853587) diff --git a/sources b/sources index 0169428..391554e 100644 --- a/sources +++ b/sources @@ -1,3 +1,3 @@ d9f511e4b51983b4e10eb58b320416d5 hi128-app-qt4-logo.png 6dcc0672ff9e60a6b83f95c5f42bec5b hi48-app-qt4-logo.png -3c1146ddf56247e16782f96910a8423b qt-everywhere-opensource-src-4.8.2.tar.gz +a663b6c875f8d7caa8ac9c30e4a4ec3b qt-everywhere-opensource-src-4.8.3.tar.gz