Changeset 30707 in webkit


Ignore:
Timestamp:
Mar 2, 2008, 9:10:18 PM (17 years ago)
Author:
alp@webkit.org
Message:

2008-03-02 Brent Fulgham <bfulgham@gmail.com>

Reviewed by Alp Toker.

http://bugs.webkit.org/show_bug.cgi?id=17415
GTK Build (using autotools) on Mac OS (DarwinPorts) Fails

Add -lstdc++ to link flags for minidom program. This corrects
a build error for the GTK+ on Mac OS.

Add ICU_CPPFLAGS earlier in include path for WebCore
so that we find $(icu_cppflags)/unicode/utf8.h, rather than
the wtf/unicode/UTF8.h on case-insensitive file systems.

Remove some needless LIBS.

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r30702 r30707  
     12008-03-02  Brent Fulgham  <bfulgham@gmail.com>
     2
     3        Reviewed by Alp Toker.
     4
     5        Add ICU_CPPFLAGS earlier in include path for WebCore
     6        so that we find $(icu_cppflags)/unicode/utf8.h, rather than
     7        the wtf/unicode/UTF8.h on case-insensitive file systems.
     8
     9        * GNUmakefile.am:
     10
    1112008-03-02  Alp Toker  <alp@atoker.com>
    212
  • trunk/GNUmakefile.am

    r30702 r30707  
    176176
    177177libWebCore_la_CPPFLAGS = \
     178        $(ICU_CPPFLAGS) \
    178179        $(global_cppflags) \
    179180        $(webcore_cppflags) \
    180         $(webkitgtk_cppflags) \
    181         $(ICU_CPPFLAGS)
     181        $(webkitgtk_cppflags)
    182182
    183183libWebCore_la_LIBADD = \
  • trunk/JavaScriptCore/ChangeLog

    r30701 r30707  
     12008-03-02  Brent Fulgham  <bfulgham@gmail.com>
     2
     3        Reviewed by Alp Toker.
     4
     5        http://bugs.webkit.org/show_bug.cgi?id=17415
     6        GTK Build (using autotools) on Mac OS (DarwinPorts) Fails
     7
     8        Add -lstdc++ to link flags for minidom program.  This corrects
     9        a build error for the GTK+ on Mac OS.
     10
     11        * GNUmakefile.am:
     12
    1132008-03-01  Mark Rowe  <mrowe@apple.com>
    214
  • trunk/JavaScriptCore/GNUmakefile.am

    r30542 r30707  
    160160Programs_minidom_LDADD = \
    161161         libJavaScriptCore.la \
    162         $(GLOBALDEPS_LIBS) \
    163         $(ICU_LIBS)
     162         -lstdc++
    164163Programs_minidom_LDFLAGS = -rpath $(CURDIR)/.libs
    165164
     
    172171        $(GLOBALDEPS_CFLAGS)
    173172Programs_testkjs_LDADD = \
    174         libJavaScriptCore.la \
    175         $(GLOBALDEPS_LIBS) \
    176         $(ICU_LIBS)
     173        libJavaScriptCore.la
    177174Programs_testkjs_LDFLAGS = -rpath $(CURDIR)/.libs
    178175
  • trunk/WebKitTools/ChangeLog

    r30702 r30707  
     12008-03-02  Brent Fulgham  <bfulgham@gmail.com>
     2
     3        Reviewed by Alp Toker.
     4
     5        Remove some needless LIBS.
     6
     7        * GNUmakefile.am:
     8
    192008-03-02  Alp Toker  <alp@atoker.com>
    210
  • trunk/WebKitTools/GNUmakefile.am

    r30702 r30707  
    1717
    1818Programs_GtkLauncher_LDADD = \
    19         $(GLOBALDEPS_LIBS) \
    20         $(WEBKITDEPS_LIBS) \
    2119        libwebkit-1.0.la
    2220
     
    4644
    4745Programs_DumpRenderTree_LDADD = \
    48         $(GLOBALDEPS_LIBS) \
    49         $(WEBKITDEPS_LIBS) \
    5046        libwebkit-1.0.la
    5147
Note: See TracChangeset for help on using the changeset viewer.