Changeset 48174 in webkit


Ignore:
Timestamp:
Sep 8, 2009 12:21:14 PM (15 years ago)
Author:
eric@webkit.org
Message:

2009-09-08 Yongjun Zhang <yongjun.zhang@nokia.com>

Reviewed by Ariya Hidayat.

https://bugs.webkit.org/show_bug.cgi?id=28981

[Qt] make npapi.h compile in winscw compiler.

Add XP_SYMBIAN macro to identify Symbian OS; this macro should be used for Symbian
specific changes in npapi.h.
Undefine XP_WIN when building for Symbian to avoid including Windows specific code.

  • bridge/npapi.h:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r48172 r48174  
     12009-09-08  Yongjun Zhang  <yongjun.zhang@nokia.com>
     2
     3        Reviewed by Ariya Hidayat.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=28981
     6
     7        [Qt] make npapi.h compile in winscw compiler.
     8
     9        Add XP_SYMBIAN macro to identify Symbian OS; this macro should be used for Symbian
     10        specific changes in npapi.h.
     11        Undefine XP_WIN when building for Symbian to avoid including Windows specific code.
     12
     13        * bridge/npapi.h:
     14
    1152009-09-08  Oliver Hunt  <oliver@apple.com>
    216
  • trunk/WebCore/bridge/npapi.h

    r47284 r48174  
    7171#    endif /* XP_PC */
    7272#endif /* __MWERKS__ */
     73
     74#ifdef __SYMBIAN32__
     75#   ifndef XP_SYMBIAN
     76#       define XP_SYMBIAN 1
     77#       undef XP_WIN
     78#   endif
     79#endif  /* __SYMBIAN32__ */
    7380
    7481#if defined(__APPLE_CC__) && !defined(__MACOS_CLASSIC__) && !defined(XP_UNIX)
Note: See TracChangeset for help on using the changeset viewer.