[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:23:12 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 69eed0429d3a6d6da9217597c32a369c0dc41116
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Wed Jul 21 13:56:01 2010 +0000

    2010-07-21  Kristian Amlie <kristian.amlie at nokia.com>
    
            Reviewed by Kenneth Rohde Christiansen.
    
            Added automatic sqlite extraction for Symbian to QtWebKit.
    
            Also added sqlite detection in case sqlite is not present in the SDK.
            This is possible if WebKit is compiled standalone.
    
            The inclusion part is a consequence of commit c578c6c1d6d in the Qt
            repository. It will not work on Qt versions < 4.7.1, but that is ok,
            since the only build system it will affect is marked as experimental
            in the whole 4.7 series.
    
            * WebCore.pro:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@63817 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index ff0bbad..302f3f1 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,19 @@
+2010-07-21  Kristian Amlie <kristian.amlie at nokia.com>
+
+        Reviewed by Kenneth Rohde Christiansen.
+
+        Added automatic sqlite extraction for Symbian to QtWebKit.
+
+        Also added sqlite detection in case sqlite is not present in the SDK.
+        This is possible if WebKit is compiled standalone.
+
+        The inclusion part is a consequence of commit c578c6c1d6d in the Qt
+        repository. It will not work on Qt versions < 4.7.1, but that is ok,
+        since the only build system it will affect is marked as experimental
+        in the whole 4.7 series.
+
+        * WebCore.pro:
+
 2010-07-21  Adam Barth  <abarth at webkit.org>
 
         Reviewed by Eric Seidel.
diff --git a/WebCore/WebCore.pro b/WebCore/WebCore.pro
index f342dba..8ed7157 100644
--- a/WebCore/WebCore.pro
+++ b/WebCore/WebCore.pro
@@ -120,8 +120,16 @@ win32-g++* {
     QMAKE_LIBDIR_POST += $$split(TMPPATH,";")
 }
 
-# Assume that symbian OS always comes with sqlite
-symbian:!CONFIG(QTDIR_build): CONFIG += system-sqlite
+symbian {
+    !CONFIG(QTDIR_build) {
+        # Test if symbian OS comes with sqlite
+        exists($${EPOCROOT}epoc32/release/armv5/lib/sqlite3.dso):CONFIG *= system-sqlite
+    } else:!symbian-abld:!symbian-sbsv2 {
+        # When bundled with Qt, all Symbian build systems extract their own sqlite files if
+        # necessary, but on non-mmp based ones we need to specify this ourselves.
+        include($$QT_SOURCE_TREE/src/plugins/sqldrivers/sqlite_symbian/sqlite_symbian.pri)
+    }
+}
 
 
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list