Changeset 60780 in webkit


Ignore:
Timestamp:
Jun 7, 2010 7:29:12 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-07 Mahesh Kulakrni <mahesh.kulkarni@nokia.com>

Reviewed by Simon Hausmann.

[QT] QT_BEARER flag is not enabled on S60 properly
https://bugs.webkit.org/show_bug.cgi?id=39357

enable QT_BEARER for all platform based on qtmobility +
bearer module availability or for qt 4.7+

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

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r60777 r60780  
     12010-06-07  Mahesh Kulakrni  <mahesh.kulkarni@nokia.com>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        [QT] QT_BEARER flag is not enabled on S60 properly
     6        https://bugs.webkit.org/show_bug.cgi?id=39357
     7
     8        enable QT_BEARER for all platform based on qtmobility +
     9        bearer module availability or for qt 4.7+
     10
     11        * WebCore.pri:
     12
    1132010-06-07  Leon Clarke  <leonclarke@google.com>
    214
  • trunk/WebCore/WebCore.pri

    r60624 r60780  
    110110}
    111111
    112 !CONFIG(QTDIR_build):!contains(DEFINES, ENABLE_QT_BEARER=.) {
    113     symbian: {
    114         exists($${EPOCROOT}epoc32/release/winscw/udeb/QtBearer.lib)| \
    115         exists($${EPOCROOT}epoc32/release/armv5/lib/QtBearer.lib) {
     112# Bearer management is part of Qt 4.7
     113# for older version, check for mobility with bearer
     114!contains(DEFINES, ENABLE_QT_BEARER=.) {
     115     !lessThan(QT_MINOR_VERSION, 7) {
     116        DEFINES += ENABLE_QT_BEARER=1
     117     } else {
     118        load(mobilityconfig)
     119        contains(MOBILITY_CONFIG, bearer) {
    116120            DEFINES += ENABLE_QT_BEARER=1
    117121        }
    118122    }
    119123}
    120 
    121 # Bearer management is part of Qt 4.7
    122 !lessThan(QT_MINOR_VERSION, 7):!contains(DEFINES, ENABLE_QT_BEARER=.):DEFINES += ENABLE_QT_BEARER=1
    123124
    124125# Enable touch event support with Qt 4.6
Note: See TracChangeset for help on using the changeset viewer.