+2011-04-29 Kevin Ollivier <kevino@theolliviers.com>
+
+ [wx] Unreviewed build fix. Fix library copying logic for wxMSW 2.9.x.
+
+ * wscript:
+
2011-04-28 Adam Barth <abarth@webkit.org>
Reviewed by Eric Seidel.
+2011-04-29 Kevin Ollivier <kevino@theolliviers.com>
+
+ [wx] Unreviewed build fix. Fix wxMSW trunk builds by adding include.
+
+ * platform/graphics/wx/GraphicsContextWx.cpp:
+
2011-04-29 Mike Reed <reed@google.com>
Reviewed by Ojan Vafai.
#include <math.h>
#include <stdio.h>
+// see http://trac.wxwidgets.org/ticket/11482
+#ifdef __WXMSW__
+# include "wx/msw/winundef.h"
+#endif
+
#include <wx/defs.h>
#include <wx/window.h>
#include <wx/dcclient.h>
+2011-04-29 Kevin Ollivier <kevino@theolliviers.com>
+
+ [wx] Unreviewed build fix, add new directory to the build.
+
+ * waf/build/settings.py:
+
2011-04-29 Carlos Garcia Campos <cgarcia@igalia.com>
Reviewed by Martin Robinson.
'Source/WebCore/platform/animation',
'Source/WebCore/platform/graphics',
'Source/WebCore/platform/graphics/filters',
+ 'Source/WebCore/platform/graphics/filters/arm',
'Source/WebCore/platform/graphics/transforms',
'Source/WebCore/platform/image-decoders',
'Source/WebCore/platform/image-decoders/bmp',
import Options
from settings import *
+import wxpresets
import TaskGen
from TaskGen import taskgen, feature, after
if building_on_win32:
for wxlib in bld.env['LIB_WX']:
+ wx_version = wxpresets.get_wx_version(os.environ['WXWIN'])
+ if int(wx_version[1]) % 2 == 1:
+ wxlib = wxlib.replace(''.join(wx_version[:2]), ''.join(wx_version))
wxlibname = os.path.join(bld.env['LIBPATH_WX'][0], wxlib + '_vc.dll')
+ print "Copying %s" % wxlibname
if os.path.exists(wxlibname):
bld.install_files(webcore.install_path, [wxlibname])