Ticket #218: Doduo-r262-gcc43.patch

File Doduo-r262-gcc43.patch, 13.4 kB (added by hiyuh, 6 months ago)
  • BAL/ChangeLogOWB

    old new  
     12008-06-12  KIMURA Masaru  <hiyuh.root@gmail.com> 
     2 
     3        Reviewed by NOBODY (OOPS!). 
     4        Compilation fix for gcc-4.3.1. 
     5 
     6        * OWBAL/Concretizations/Facilities/SDL/BCFileChooserSDL.cpp: 
     7        * OWBAL/Concretizations/Media/SDL/BCMediaPlayerPrivateSDL.cpp: 
     8        * OWBAL/Concretizations/Types/Common/BCbal_objectCommon.cpp: 
     9        * OWBAL/Concretizations/Types/SDL/BCIconSDL.cpp: 
     10        * WKAL/Concretizations/Graphics/SDL/BCGradientSDL.cpp: 
     11        * WKAL/Concretizations/Graphics/SDL/BCRenderPathSDL.cpp: 
     12        * WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerGradientSDL.cpp: 
     13        * WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerPatternSDL.cpp: 
     14        * WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerSDL.cpp: 
     15        * WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerSolidSDL.cpp: 
     16        * WKAL/Concretizations/Graphics/SDL/BCSVGResourceClipperSDL.cpp: 
     17        * WKAL/Concretizations/Graphics/SDL/BCSVGResourceMaskerSDL.cpp: 
     18        * WKAL/Concretizations/Widgets/SDL/BCClipboardSDL.cpp: 
     19        * WKAL/Concretizations/Widgets/SDL/BCContextMenuItemSDL.cpp: 
     20        * WKAL/Concretizations/Widgets/SDL/BCContextMenuSDL.cpp: 
     21        * WKAL/Concretizations/Widgets/SDL/BCDragControllerSDL.cpp: 
     22        * WKAL/Concretizations/Widgets/SDL/BCPasteboardSDL.cpp: 
     23        * WKAL/Concretizations/Widgets/SDL/BCRenderThemeSDL.cpp: 
     24        * WKAL/Concretizations/Widgets/SDL/BCSearchPopupMenuSDL.cpp: 
     25        * WKAL/Concretizations/Widgets/SDL/PasteboardHelperSDL.cpp: 
     26 
    1272008-06-12  Fred  <fmarmond@pleyo.com> 
    228 
    329        Reviewed by NOBODY (OOPS!). 
  • BAL/OWBAL/Concretizations/Facilities/SDL/BCFileChooserSDL.cpp

    old new  
    3636//#include "LocalizedStrings.h" 
    3737#include "StringTruncator.h" 
    3838 
     39#include <cstdio> 
    3940 
    4041namespace OWBAL { 
    4142 
  • BAL/OWBAL/Concretizations/Media/SDL/BCMediaPlayerPrivateSDL.cpp

    old new  
    3535#include "ScrollView.h" 
    3636#include "Widget.h" 
    3737 
     38#include <cstdio> 
    3839#include <limits> 
    3940#include <math.h> 
    4041 
  • BAL/OWBAL/Concretizations/Types/Common/BCbal_objectCommon.cpp

    old new  
    3232 
    3333#include "Color.h" 
    3434 
     35#include <cstdio> 
     36 
    3537BalValue::BalValue() 
    3638    : d(new BalValuePrivate()) 
    3739    , m_obj(0) 
  • BAL/OWBAL/Concretizations/Types/SDL/BCIconSDL.cpp

    old new  
    3434#include "MIMETypeRegistry.h" 
    3535#include "PassRefPtr.h" 
    3636 
     37#include <cstdio> 
    3738 
    3839namespace OWBAL { 
    3940 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCGradientSDL.cpp

    old new  
    3131#include "CSSParser.h" 
    3232#include "GraphicsContext.h" 
    3333 
     34#include <cstdio> 
     35 
    3436namespace WKAL { 
    3537 
    3638void Gradient::platformDestroy() 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCRenderPathSDL.cpp

    old new  
    3030 
    3131#include "SVGPaintServer.h" 
    3232 
     33#include <cstdio> 
     34 
    3335namespace WebCore { 
    3436 
    3537bool RenderPath::strokeContains(const FloatPoint& point, bool requiresStroke) const 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerGradientSDL.cpp

    old new  
    3838#include "RenderStyle.h" 
    3939#include "SVGGradientElement.h" 
    4040 
     41#include <cstdio> 
     42 
    4143namespace WKAL { 
    4244 
    4345bool SVGPaintServerGradient::setup(GraphicsContext*& context, const RenderObject* object, SVGPaintTargetType type, bool isPaintingText) const 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerPatternSDL.cpp

    old new  
    3131#include "NotImplemented.h" 
    3232#include "SVGPaintServerPattern.h" 
    3333 
     34#include <cstdio> 
     35 
    3436namespace WKAL { 
    3537 
    3638bool SVGPaintServerPattern::setup(GraphicsContext*& context, const RenderObject* object, SVGPaintTargetType type, bool isPaintingText) const 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerSDL.cpp

    old new  
    3434#include "SVGPaintServer.h" 
    3535#include "RenderPath.h" 
    3636 
     37#include <cstdio> 
    3738 
    3839namespace WKAL { 
    3940 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGPaintServerSolidSDL.cpp

    old new  
    3434#include "SVGPaintServer.h" 
    3535#include "RenderPath.h" 
    3636 
     37#include <cstdio> 
     38 
    3739namespace WKAL { 
    3840 
    3941bool SVGPaintServerSolid::setup(GraphicsContext*& context, const RenderObject* object, SVGPaintTargetType type, bool isPaintingText) const 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGResourceClipperSDL.cpp

    old new  
    3232#include "AffineTransform.h" 
    3333#include "GraphicsContext.h" 
    3434 
     35#include <cstdio> 
    3536 
    3637namespace WKAL { 
    3738 
  • BAL/WKAL/Concretizations/Graphics/SDL/BCSVGResourceMaskerSDL.cpp

    old new  
    3232#include "ImageBuffer.h" 
    3333#include "GraphicsContext.h" 
    3434 
     35#include <cstdio> 
     36 
    3537namespace WKAL { 
    3638 
    3739void SVGResourceMasker::applyMask(GraphicsContext* context, const FloatRect& boundingBox) 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCClipboardSDL.cpp

    old new  
    3434 
    3535#include "Editor.h" 
    3636 
     37#include <cstdio> 
     38 
    3739namespace WKAL { 
    3840PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy) 
    3941{ 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCContextMenuItemSDL.cpp

    old new  
    3232#include "ContextMenuItem.h" 
    3333#include "CString.h" 
    3434 
     35#include <cstdio> 
     36 
    3537#define WEBKIT_CONTEXT_MENU_ACTION "webkit-context-menu" 
    3638 
    3739namespace WKAL { 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCContextMenuSDL.cpp

    old new  
    3232 
    3333#include "ContextMenuController.h" 
    3434 
     35#include <cstdio> 
     36 
    3537namespace WKAL { 
    3638 
    3739// TODO: ref-counting correctness checking. 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCDragControllerSDL.cpp

    old new  
    3535#include "FrameView.h" 
    3636#include "Page.h" 
    3737 
     38#include <cstdio> 
     39 
    3840namespace WebCore { 
    3941 
    4042// FIXME: These values are straight out of DragControllerMac, so probably have 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCPasteboardSDL.cpp

    old new  
    3838#include "KURL.h" 
    3939#include "markup.h" 
    4040 
     41#include <cstdio> 
     42 
    4143namespace WKAL { 
    4244 
    4345/* FIXME: we must get rid of this and use the enum in webkitwebview.h someway */ 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCRenderThemeSDL.cpp

    old new  
    3434#include "GraphicsContext.h" 
    3535#include "Pen.h" 
    3636 
     37#include <cstdio> 
     38 
    3739#define THEME_COLOR 204 
    3840#define THEME_FONT  210 
    3941 
  • BAL/WKAL/Concretizations/Widgets/SDL/BCSearchPopupMenuSDL.cpp

    old new  
    3030#include "config.h" 
    3131#include "SearchPopupMenu.h" 
    3232 
     33#include <cstdio> 
    3334 
    3435namespace WKAL { 
    3536 
  • BAL/WKAL/Concretizations/Widgets/SDL/PasteboardHelperSDL.cpp

    old new  
    3030#include "Frame.h" 
    3131#include "PasteboardHelperSDL.h" 
    3232 
     33#include <cstdio> 
     34 
    3335using namespace WebCore; 
    3436 
    3537namespace WebKit{ 
  • WebCore/bridge/bal/bal_instance.cpp

    old new  
    3838#include "wtf/HashMap.h" 
    3939#include "object_object.h" 
    4040 
     41#include <cstdio> 
     42 
    4143namespace KJS { 
    4244namespace Bindings { 
    4345 
  • WebKit/ChangeLogOWB

    old new  
     12008-06-12  KIMURA Masaru  <hiyuh.root@gmail.com> 
     2 
     3        Reviewed by NOBODY (OOPS!). 
     4        Compilation fix for gcc-4.3.1. 
     5 
     6        * OrigynWebBrowser/WebCoreSupport/WebChromeClient.cpp: 
     7        * OrigynWebBrowser/WebCoreSupport/WebFrameLoaderClient.cpp: 
     8 
    192008-06-11  Mario Bensi  <mbensi@pleyo.com> 
    210 
    311        Reviewed by NOBODY (OOPS!). 
  • WebKit/OrigynWebBrowser/WebCoreSupport/WebChromeClient.cpp

    old new  
    4646#include <WindowFeatures.h> 
    4747#include DEEPSEE_INCLUDE 
    4848 
     49#include <cstdio> 
     50 
    4951using namespace WebCore; 
    5052 
    5153WebChromeClient::WebChromeClient(WebView* webView) 
  • WebKit/OrigynWebBrowser/WebCoreSupport/WebFrameLoaderClient.cpp

    old new  
    5959#include <ResourceHandle.h> 
    6060#include DEEPSEE_INCLUDE 
    6161 
     62#include <cstdio> 
     63 
    6264using namespace WebCore; 
    6365using namespace HTMLNames; 
    6466 
  • WebKitTools/ChangeLogOWB

    old new  
     12008-06-12  KIMURA Masaru  <hiyuh.root@gmail.com> 
     2 
     3        Reviewed by NOBODY (OOPS!). 
     4        Compilation fix for gcc-4.3.1. 
     5 
     6        * OWBLauncher/SDL/main.cpp: 
     7 
    182008-06-11  Mario Bensi  <mbensi@pleyo.com> 
    29 
    310        Reviewed by NOBODY (OOPS!). 
  • WebKitTools/OWBLauncher/SDL/main.cpp

    old new  
    4040#include "Timer.h" 
    4141#include "SharedTimer.h" 
    4242 
     43#include <unistd.h> 
     44 
    4345using namespace WebCore; 
    4446static WebView *webView; 
    4547static bool isExposed = false;