Changeset 55457 in webkit


Ignore:
Timestamp:
Mar 3, 2010 4:44:35 AM (14 years ago)
Author:
eric@webkit.org
Message:

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-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.
Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r55444 r55457  
     12010-03-03  Fridrich Strba  <fridrich.strba@bluewin.ch>
     2
     3        Reviewed by Xan Lopez.
     4
     5        Miscellaneous little fixes for the windows build of webkit-gtk
     6        https://bugs.webkit.org/show_bug.cgi?id=35640
     7
     8        * GNUmakefile.am: On Windows with GCC, presence of
     9        __declspec(dllexport) on some symbols disables the autoexport/autoimport
     10        feature for all others. Using regex here assures that all symbols that
     11        need to be exported in the dll are actually exported.
     12
    1132010-03-02  Arno Renevier  <arno@renevier.net>
    214
  • trunk/GNUmakefile.am

    r55444 r55457  
    143143if OS_WIN32
    144144no_undefined = -no-undefined
     145version_script = -export-symbols-regex "^(webkit_|JS).*"
    145146endif
    146147
  • trunk/WebCore/ChangeLog

    r55456 r55457  
     12010-03-03  Fridrich Strba  <fridrich.strba@bluewin.ch>
     2
     3        Reviewed by Xan Lopez.
     4
     5        Miscellaneous little fixes for the windows build of webkit-gtk
     6        https://bugs.webkit.org/show_bug.cgi?id=35640
     7
     8        * GNUmakefile.am: dist two new files concerning mathml support.
     9
    1102010-03-03  Xan Lopez  <xlopez@igalia.com>
    211
  • trunk/WebCore/GNUmakefile.am

    r55456 r55457  
    27672767        WebCore/mathml/RenderMathMLBlock.cpp \
    27682768        WebCore/mathml/RenderMathMLBlock.h \
     2769        WebCore/mathml/RenderMathMLSubSup.cpp \
     2770        WebCore/mathml/RenderMathMLSubSup.h \
    27692771        WebCore/mathml/RenderMathMLUnderOver.cpp \
    27702772        WebCore/mathml/RenderMathMLUnderOver.h
  • trunk/WebKit/gtk/ChangeLog

    r55454 r55457  
     12010-03-03  Fridrich Strba  <fridrich.strba@bluewin.ch>
     2
     3        Reviewed by Xan Lopez.
     4
     5        Miscellaneous little fixes for the windows build of webkit-gtk
     6        https://bugs.webkit.org/show_bug.cgi?id=35640
     7
     8        * webkit/webkitdownload.cpp: Windows headers define ERROR
     9        which breaks the build. Undef ERROR if it is defined.
     10
    1112010-03-03  Philippe Normand  <pnormand@igalia.com>
    212
  • trunk/WebKit/gtk/webkit/webkitdownload.cpp

    r54959 r55457  
    3838#include <glib/gstdio.h>
    3939
     40#ifdef ERROR
     41#undef ERROR
     42#endif
     43
    4044using namespace WebKit;
    4145using namespace WebCore;
Note: See TracChangeset for help on using the changeset viewer.