Changeset 128036 in webkit


Ignore:
Timestamp:
Sep 10, 2012 2:35:13 AM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[Qt] Fix linking of QtWebKit.dll on Windows
https://bugs.webkit.org/show_bug.cgi?id=96250

Patch by Simon Hausmann <simon.hausmann@nokia.com> on 2012-09-10
Reviewed by Kenneth Rohde Christiansen.

On Windows when using ANGLE, the DLL import library of EGL is called libEGL.lib instead of EGL.lib.
However as it turns out we do not need to explicitly link against EGL, because when Qt is configured with ANGLE
support it will do that automatically for us.

  • WebCore.pri:
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r128032 r128036  
     12012-09-10  Simon Hausmann  <simon.hausmann@nokia.com>
     2
     3        [Qt] Fix linking of QtWebKit.dll on Windows
     4        https://bugs.webkit.org/show_bug.cgi?id=96250
     5
     6        Reviewed by Kenneth Rohde Christiansen.
     7
     8        On Windows when using ANGLE, the DLL import library of EGL is called libEGL.lib instead of EGL.lib.
     9        However as it turns out we do not need to explicitly link against EGL, because when Qt is configured with ANGLE
     10        support it will do that automatically for us.
     11
     12        * WebCore.pri:
     13
    1142012-09-10  Christophe Dumez  <christophe.dumez@intel.com>
    215
  • trunk/Source/WebCore/WebCore.pri

    r126756 r128036  
    197197
    198198contains(DEFINES, WTF_USE_3D_GRAPHICS=1) {
    199     contains(QT_CONFIG, opengles2): LIBS += -lEGL
     199    contains(QT_CONFIG, opengles2):!win32: LIBS += -lEGL
    200200    mac: LIBS += -framework IOSurface -framework CoreFoundation
    201201    linux-*:contains(DEFINES, HAVE_XCOMPOSITE=1): LIBS += -lXcomposite
Note: See TracChangeset for help on using the changeset viewer.