Changeset 56243 in webkit


Ignore:
Timestamp:
Mar 19, 2010 9:41:49 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-19 Laszlo Gombos <Laszlo Gombos>

Reviewed by Simon Hausmann.

[Qt] Disable TILED_BACKING_STORE if Qt version is earlier than Qt4.6
https://bugs.webkit.org/show_bug.cgi?id=36348

Backing store implementation for QtWebKit requires at least Qt
version 4.6.

No new tests as there is no new functionality.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r56242 r56243  
     12010-03-19  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [Qt] Disable TILED_BACKING_STORE if Qt version is earlier than Qt4.6
     6        https://bugs.webkit.org/show_bug.cgi?id=36348
     7
     8        Backing store implementation for QtWebKit requires at least Qt
     9        version 4.6.
     10
     11        No new tests as there is no new functionality.
     12
     13        * WebCore.pri:
     14
    1152010-03-19  Joseph Pecoraro  <joepeck@webkit.org>
    216
  • trunk/WebCore/WebCore.pri

    r56003 r56243  
    8181
    8282# Tiled Backing Store support
    83 !contains(DEFINES, ENABLE_TILED_BACKING_STORE=.): DEFINES += ENABLE_TILED_BACKING_STORE=1
     83greaterThan(QT_MINOR_VERSION, 5) {
     84    !contains(DEFINES, ENABLE_TILED_BACKING_STORE=.): DEFINES += ENABLE_TILED_BACKING_STORE=1
     85}
    8486
    8587# Nescape plugins support (NPAPI)
Note: See TracChangeset for help on using the changeset viewer.