[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Wed Apr 7 23:02:00 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit 25660d562f4dea63dba500e1ca827c8535318f67
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Fri Oct 23 19:14:27 2009 +0000

    2009-10-23  Janne Koskinen  <janne.p.koskinen at digia.com>
    
            Reviewed by Tor Arne Vestbø.
    
            [Qt] Correct linking of sqlite3 for Symbian
            https://bugs.webkit.org/show_bug.cgi?id=30569
    
            ".lib" will try to include library as static library
            causing the library to be searched from wrong directory and if found
            will be statically linked instead of the inteded dynamic linking.
    
            * WebCore.pro:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49986 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 996383f..911f725 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-10-23  Janne Koskinen  <janne.p.koskinen at digia.com>
+
+        Reviewed by Tor Arne Vestbø.
+
+        [Qt] Correct linking of sqlite3 for Symbian
+        https://bugs.webkit.org/show_bug.cgi?id=30569
+
+        ".lib" will try to include library as static library
+        causing the library to be searched from wrong directory and if found
+        will be statically linked instead of the inteded dynamic linking.
+
+        * WebCore.pro:
+
 2009-10-23  Enrica Casucci  <enrica at apple.com>
 
         Reviewed by Adele Peterson.
diff --git a/WebCore/WebCore.pro b/WebCore/WebCore.pro
index 00b467d..d9a7056 100644
--- a/WebCore/WebCore.pro
+++ b/WebCore/WebCore.pro
@@ -2560,8 +2560,7 @@ contains(DEFINES, ENABLE_SQLITE=1) {
             LIBS *= $$QT_LFLAGS_SQLITE
         } else {
             INCLUDEPATH += $${SQLITE3SRCDIR}
-            symbian: LIBS += -lsqlite3.lib
-            else: LIBS += -lsqlite3
+            LIBS += -lsqlite3
         }
     }
 

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list