Changeset 49986 in webkit


Ignore:
Timestamp:
Oct 23, 2009 12:14:27 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-10-23 Janne Koskinen <janne.p.koskinen@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:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r49985 r49986  
     12009-10-23  Janne Koskinen  <janne.p.koskinen@digia.com>
     2
     3        Reviewed by Tor Arne Vestbø.
     4
     5        [Qt] Correct linking of sqlite3 for Symbian
     6        https://bugs.webkit.org/show_bug.cgi?id=30569
     7
     8        ".lib" will try to include library as static library
     9        causing the library to be searched from wrong directory and if found
     10        will be statically linked instead of the inteded dynamic linking.
     11
     12        * WebCore.pro:
     13
    1142009-10-23  Enrica Casucci  <enrica@apple.com>
    215
  • trunk/WebCore/WebCore.pro

    r49844 r49986  
    25612561        } else {
    25622562            INCLUDEPATH += $${SQLITE3SRCDIR}
    2563             symbian: LIBS += -lsqlite3.lib
    2564             else: LIBS += -lsqlite3
     2563            LIBS += -lsqlite3
    25652564        }
    25662565    }
Note: See TracChangeset for help on using the changeset viewer.