Reviewed by Xan Lopez.
Miscellaneous little fixes for the windows build of webkit-gtk
https://bugs.webkit.org/show_bug.cgi?id=35640
* GNUmakefile.am: On Windows with GCC, presence of
__declspec(dllexport) on some symbols disables the autoexport/autoimport
feature for all others. Using regex here assures that all symbols that
need to be exported in the dll are actually exported.
2010-03-03 Fridrich Strba <fridrich.strba@bluewin.ch>
Reviewed by Xan Lopez.
Miscellaneous little fixes for the windows build of webkit-gtk
https://bugs.webkit.org/show_bug.cgi?id=35640
* GNUmakefile.am: dist two new files concerning mathml support.
2010-03-03 Fridrich Strba <fridrich.strba@bluewin.ch>
Reviewed by Xan Lopez.
Miscellaneous little fixes for the windows build of webkit-gtk
https://bugs.webkit.org/show_bug.cgi?id=35640
* webkit/webkitdownload.cpp: Windows headers define ERROR
which breaks the build. Undef ERROR if it is defined.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@55457
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-03-03 Fridrich Strba <fridrich.strba@bluewin.ch>
+
+ Reviewed by Xan Lopez.
+
+ Miscellaneous little fixes for the windows build of webkit-gtk
+ https://bugs.webkit.org/show_bug.cgi?id=35640
+
+ * GNUmakefile.am: On Windows with GCC, presence of
+ __declspec(dllexport) on some symbols disables the autoexport/autoimport
+ feature for all others. Using regex here assures that all symbols that
+ need to be exported in the dll are actually exported.
+
2010-03-02 Arno Renevier <arno@renevier.net>
Reviewed by Gustavo Noronha Silva.
# It breaks the build on other platforms, so we use it conditionally
if OS_WIN32
no_undefined = -no-undefined
+version_script = -export-symbols-regex "^(webkit_|JS).*"
endif
if OS_GNU
+2010-03-03 Fridrich Strba <fridrich.strba@bluewin.ch>
+
+ Reviewed by Xan Lopez.
+
+ Miscellaneous little fixes for the windows build of webkit-gtk
+ https://bugs.webkit.org/show_bug.cgi?id=35640
+
+ * GNUmakefile.am: dist two new files concerning mathml support.
+
2010-03-03 Xan Lopez <xlopez@igalia.com>
Unreviewed distcheck fix.
WebCore/mathml/MathMLTextElement.h \
WebCore/mathml/RenderMathMLBlock.cpp \
WebCore/mathml/RenderMathMLBlock.h \
+ WebCore/mathml/RenderMathMLSubSup.cpp \
+ WebCore/mathml/RenderMathMLSubSup.h \
WebCore/mathml/RenderMathMLUnderOver.cpp \
WebCore/mathml/RenderMathMLUnderOver.h
+2010-03-03 Fridrich Strba <fridrich.strba@bluewin.ch>
+
+ Reviewed by Xan Lopez.
+
+ Miscellaneous little fixes for the windows build of webkit-gtk
+ https://bugs.webkit.org/show_bug.cgi?id=35640
+
+ * webkit/webkitdownload.cpp: Windows headers define ERROR
+ which breaks the build. Undef ERROR if it is defined.
+
2010-03-03 Philippe Normand <pnormand@igalia.com>
Unreviewed, build fix after r55452.
#include <glib/gstdio.h>
+#ifdef ERROR
+#undef ERROR
+#endif
+
using namespace WebKit;
using namespace WebCore;