Changeset 16115 in webkit for trunk/JavaScriptCore/wtf/Platform.h


Ignore:
Timestamp:
Aug 30, 2006, 11:29:55 AM (19 years ago)
Author:
thatcher
Message:

JavaScriptCore:

Reviewed by Tim H.

Commit KDE related tweaks, to be able to
differentiate between a Qt-only or a KDE build.

  • CMakeLists.txt: Install wtf-unity library.
  • wtf/Platform.h: Add define for the KDE platform.

WebCore:

Reviewed by Tim H.

Commit KDE related tweaks, to be able to
differentiate between a Qt-only or a KDE build.

  • CMakeLists.txt: Move global variables up to trunk/CMakeLists.txt.

Also rename USE_WEBKIT_SVG_SUPPORT to WEBKIT_USE_SVG_SUPPORT.

WebKitTools:

Reviewed by Tim H.

Commit KDE related tweaks, to be able to
differentiate between a Qt-only or a KDE build.

  • DumpRenderTree/DumpRenderTree.qtproj/CMakeLists.txt: Add ksvg2/ includes.
  • QtLauncher/CMakeLists.txt: Add ksvg2/ includes.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/wtf/Platform.h

    r16089 r16115  
    7070#if defined(BUILDING_QT__)
    7171#define KXMLCORE_PLATFORM_QT 1
     72
     73/* PLATFORM(KDE) */
     74#if defined(BUILDING_KDE__)
     75#define KXMLCORE_PLATFORM_KDE 1
     76#endif
     77
    7278#elif PLATFORM(DARWIN)
    7379#define KXMLCORE_PLATFORM_MAC 1
     
    161167/* for Unicode, KDE uses Qt, everything else uses ICU */
    162168#if PLATFORM(KDE)
    163 #define KXMLCORE_USE_QT4_UNICODE 1
     169// FIXME: Not using Qt4 unicode for now!
     170#define KXMLCORE_USE_ICU_UNICODE 1
    164171#else
    165172#define KXMLCORE_USE_ICU_UNICODE 1
Note: See TracChangeset for help on using the changeset viewer.