Changeset 16945 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Oct 9, 2006, 4:08:47 PM (19 years ago)
Author:
bdash
Message:

2006-10-09 Krzysztof Kowalczyk <[email protected]>

Reviewed by Geoff.

Improve gdk build compiler flags (show warning, no rtti and exceptions).

  • jscore.bkl:

2006-10-09 Krzysztof Kowalczyk <[email protected]>

Reviewed by Geoff.

Improve gdk build compiler options.

  • Bakefiles.bkgen:
  • presets.bkl:

2006-10-09 Krzysztof Kowalczyk <[email protected]>

Reviewed by Geoff.

Fix memory leaks discovered via valgrind. Gdk build fixes.

  • Projects/gdk/webcore-gdk.bkl:
  • make-generated-sources.sh:
  • platform/cairo/ImageCairo.cpp: (WebCore::Image::draw):
  • platform/gdk/FrameGdk.cpp: (WebCore::FrameGdk::handleGdkEvent):
  • platform/gdk/FrameGdk.h:
  • platform/gdk/PlatformScrollBar.h: (WebCore::PlatformScrollbar::horizontalScrollbarHeight): (WebCore::PlatformScrollbar::verticalScrollbarWidth):

2006-10-09 Krzysztof Kowalczyk <[email protected]>

Reviewed by Geoff.

Add -exit-after-loading option to make gdklauncher quit after fully loading and rendering
a page. This allows automatic testing via e.g. valgrind.

  • GdkLauncher/gdklauncher.bkl:
  • GdkLauncher/main.cpp: (LauncherFrameGdk::LauncherFrameGdk): (LauncherFrameGdk::setExitAfterLoading): (LauncherFrameGdk::handledOnloadEvents): (handle_event): (main):
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r16855 r16945  
     12006-10-09  Krzysztof Kowalczyk  <[email protected]>
     2
     3        Reviewed by Geoff.
     4
     5        Improve gdk build compiler flags (show warning, no rtti and exceptions).
     6
     7        * jscore.bkl:
     8
    192006-10-06  Kevin McCullough  <[email protected]>
    210
  • trunk/JavaScriptCore/jscore.bkl

    r16382 r16945  
    5555        <include>$(SRCDIR)/bindings/c</include>
    5656        <include>$(SRCDIR)/bindings/jni</include>
    57         <include>$(SRCDIR)/kxmlcore</include>
    5857        <include>$(SRCDIR)/DerivedSources/JavaScriptCore</include>
    5958
     
    101100        <objects-depend>dftables</objects-depend>
    102101        <pre-build-target>DerivedSources</pre-build-target>
     102        <warnings>default</warnings>
     103        <cxx-rtti>off</cxx-rtti>
     104        <cxx-exceptions>off</cxx-exceptions>
     105        <debug-info>on</debug-info>
    103106        <sources>
    104107            $(JSCORE_SOURCES_WTF)
Note: See TracChangeset for help on using the changeset viewer.