Changeset 106742 in webkit


Ignore:
Timestamp:
Feb 4, 2012 2:24:01 PM (12 years ago)
Author:
commit-queue@webkit.org
Message:

[GTK] Use the wide character version of win32 API by default
https://bugs.webkit.org/show_bug.cgi?id=77809

Patch by Kalev Lember <kalevlember@gmail.com> on 2012-02-04
Reviewed by Martin Robinson.

Certain win32-specific files (like PluginDatabaseWin.cpp) make the
assumption that the wide character version of win32 API is the default.
Define _UNICODE and UNICODE to do this, similar to what other win32
ports are doing.

  • GNUmakefile.am:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r106688 r106742  
     12012-02-04  Kalev Lember  <kalevlember@gmail.com>
     2
     3        [GTK] Use the wide character version of win32 API by default
     4        https://bugs.webkit.org/show_bug.cgi?id=77809
     5
     6        Reviewed by Martin Robinson.
     7
     8        Certain win32-specific files (like PluginDatabaseWin.cpp) make the
     9        assumption that the wide character version of win32 API is the default.
     10        Define _UNICODE and UNICODE to do this, similar to what other win32
     11        ports are doing.
     12
     13        * GNUmakefile.am:
     14
    1152012-02-03  Kalev Lember  <kalevlember@gmail.com>
    216
  • trunk/GNUmakefile.am

    r106346 r106742  
    151151endif
    152152
     153# Use the wide character version of win32 API by default
     154if TARGET_WIN32
     155global_cppflags += \
     156        -DUNICODE \
     157        -D_UNICODE
     158endif
     159
    153160if USE_ICU_UNICODE
    154161global_cppflags += \
Note: See TracChangeset for help on using the changeset viewer.