Changeset 17853 in webkit for trunk/JavaScriptCore/pcre


Ignore:
Timestamp:
Nov 19, 2006, 10:39:14 AM (19 years ago)
Author:
staikos
Message:

top level:

Reviewed by Zack.

http://bugs.webkit.org/show_bug.cgi?id=11649

  • CMakeLists.txt: Fix Qt-only build without KDE cmake files

JavaScriptCore:

Reviewed by Zack.

http://bugs.webkit.org/show_bug.cgi?id=11649
Fix CMake Qt-only build without KDE CMake files

  • CMakeLists.txt:
  • pcre/CMakeLists.txt:

WebCore:

Reviewed by Zack.

http://bugs.webkit.org/show_bug.cgi?id=11649
Fix CMake files for Qt-only build without KDE cmake files.
Fix Qt/KDE build for the SVG support.
Fix Qt-only build in the resource handler.

  • CMakeLists.txt:
  • platform/graphics/svg/qt/SVGResourceFilterQt.cpp: Added. (WebCore::SVGResourceFilter::SVGResourceFilter): (WebCore::SVGResourceFilter::~SVGResourceFilter): (WebCore::SVGResourceFilter::prepareFilter): (WebCore::SVGResourceFilter::applyFilter):
  • platform/network/qt/ResourceHandleManager.cpp: (WebCore::ResourceHandleManager::cancel): (WebCore::ResourceHandleManager::slotData): (WebCore::ResourceHandleManager::slotMimetype): (WebCore::ResourceHandleManager::slotResult): (WebCore::ResourceHandleManager::deliverJobData):
  • platform/network/qt/ResourceHandleManager.h:
  • platform/network/qt/ResourceHandleQt.cpp:
  • platform/qt/CursorQt.cpp: (WebCore::noDropCursor): (WebCore::progressCursor): (WebCore::aliasCursor):

WebKitQt:

Reviewed by Zack.

http://bugs.webkit.org/show_bug.cgi?id=11649
Fix Qt-only build

  • QtLauncher/CMakeLists.txt:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/pcre/CMakeLists.txt

    r16181 r17853  
    22project( pcre-unity )
    33
    4 include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/.. ${CMAKE_CURRENT_SOURCE_DIR}/../wtf )
     4include_directories(
     5    ${CMAKE_CURRENT_BINARY_DIR}
     6    ${CMAKE_CURRENT_SOURCE_DIR}/..
     7    ${CMAKE_CURRENT_SOURCE_DIR}/../wtf
     8    )
    59#compile dftables.c -> dftables
    610#run dftables to generate chartables.c
     
    3741   )
    3842
    39 kde4_add_library(pcre-unity STATIC ${pcre-unity_LIB_SRCS})
     43IF (WEBKIT_USE_KDE_SUPPORT)
     44    kde4_add_library(pcre-unity STATIC ${pcre-unity_LIB_SRCS})
     45ELSE (WEBKIT_USE_KDE_SUPPORT)
     46    add_library(pcre-unity STATIC ${pcre-unity_LIB_SRCS})
     47ENDIF (WEBKIT_USE_KDE_SUPPORT)
    4048
    4149
Note: See TracChangeset for help on using the changeset viewer.