Changeset 74056 in webkit


Ignore:
Timestamp:
Dec 14, 2010 1:20:40 PM (13 years ago)
Author:
Laszlo Gombos
Message:

2010-12-14 Laszlo Gombos <Laszlo Gombos>

Reviewed by Eric Seidel.

[Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
https://bugs.webkit.org/show_bug.cgi?id=50231

Guard CONFIG+=link_pkgconfig with !symbian.

  • jsc.pro:

2010-12-14 Laszlo Gombos <Laszlo Gombos>

Reviewed by Eric Seidel.

[Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
https://bugs.webkit.org/show_bug.cgi?id=50231

No new tests as there is no new functionality.

Guard CONFIG+=link_pkgconfig with !symbian.

  • WebCore.pro:

2010-12-14 Laszlo Gombos <Laszlo Gombos>

Reviewed by Eric Seidel.

[Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
https://bugs.webkit.org/show_bug.cgi?id=50231

Guard CONFIG+=link_pkgconfig with !symbian.

  • DumpRenderTree/qt/DumpRenderTree.pro:
  • WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
  • WebKitTestRunner/qt/WebKitTestRunner.pro:
Location:
trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r74030 r74056  
     12010-12-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
     6        https://bugs.webkit.org/show_bug.cgi?id=50231
     7
     8        Guard CONFIG+=link_pkgconfig with !symbian.
     9
     10        * jsc.pro:
     11
    1122010-12-14  Cameron Zwarich  <zwarich@apple.com>
    213
  • trunk/JavaScriptCore/jsc.pro

    r68142 r74056  
    1212include($$PWD/../WebKit.pri)
    1313
    14 CONFIG += link_pkgconfig
     14unix:!mac:!symbian:CONFIG += link_pkgconfig
    1515
    1616QMAKE_RPATHDIR += $$OUTPUT_DIR/lib
  • trunk/WebCore/ChangeLog

    r74054 r74056  
     12010-12-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
     6        https://bugs.webkit.org/show_bug.cgi?id=50231
     7
     8        No new tests as there is no new functionality.
     9
     10        Guard CONFIG+=link_pkgconfig with !symbian.
     11
     12        * WebCore.pro:
     13
    1142010-12-14  Sheriff Bot  <webkit.review.bot@gmail.com>
    215
  • trunk/WebCore/WebCore.pro

    r74049 r74056  
    32783278}
    32793279
    3280 unix:!mac:CONFIG += link_pkgconfig
     3280unix:!mac:!symbian:CONFIG += link_pkgconfig
    32813281
    32823282contains(DEFINES, ENABLE_XSLT=1) {
  • trunk/WebKitTools/ChangeLog

    r74036 r74056  
     12010-12-14  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt] [Symbian] Do not use pkg-config on Symbian as it is not supported
     6        https://bugs.webkit.org/show_bug.cgi?id=50231
     7
     8        Guard CONFIG+=link_pkgconfig with !symbian.
     9
     10        * DumpRenderTree/qt/DumpRenderTree.pro:
     11        * WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
     12        * WebKitTestRunner/qt/WebKitTestRunner.pro:
     13
    1142010-12-14  Philippe Normand  <pnormand@igalia.com>
    215
  • trunk/WebKitTools/DumpRenderTree/qt/DumpRenderTree.pro

    r68825 r74056  
    1313DESTDIR = ../../../bin
    1414
    15 unix:!mac {
     15unix:!mac:!symbian {
    1616    CONFIG += link_pkgconfig
    1717    PKGCONFIG += fontconfig
  • trunk/WebKitTools/WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro

    r72792 r74056  
    6868QMAKE_CXXFLAGS += "-include $$PREFIX_HEADER"
    6969
    70 unix:!mac {
     70unix:!mac:!symbian {
    7171    CONFIG += link_pkgconfig
    7272    PKGCONFIG += fontconfig
  • trunk/WebKitTools/WebKitTestRunner/qt/WebKitTestRunner.pro

    r72792 r74056  
    3232DESTDIR = $$OUTPUT_DIR/bin
    3333
    34 unix:!mac {
     34unix:!mac:!symbian {
    3535    CONFIG += link_pkgconfig
    3636    PKGCONFIG += fontconfig
Note: See TracChangeset for help on using the changeset viewer.