Changeset 30707 in webkit
- Timestamp:
- Mar 2, 2008, 9:10:18 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r30702 r30707 1 2008-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 1 11 2008-03-02 Alp Toker <alp@atoker.com> 2 12 -
trunk/GNUmakefile.am
r30702 r30707 176 176 177 177 libWebCore_la_CPPFLAGS = \ 178 $(ICU_CPPFLAGS) \ 178 179 $(global_cppflags) \ 179 180 $(webcore_cppflags) \ 180 $(webkitgtk_cppflags) \ 181 $(ICU_CPPFLAGS) 181 $(webkitgtk_cppflags) 182 182 183 183 libWebCore_la_LIBADD = \ -
trunk/JavaScriptCore/ChangeLog
r30701 r30707 1 2008-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 1 13 2008-03-01 Mark Rowe <mrowe@apple.com> 2 14 -
trunk/JavaScriptCore/GNUmakefile.am
r30542 r30707 160 160 Programs_minidom_LDADD = \ 161 161 libJavaScriptCore.la \ 162 $(GLOBALDEPS_LIBS) \ 163 $(ICU_LIBS) 162 -lstdc++ 164 163 Programs_minidom_LDFLAGS = -rpath $(CURDIR)/.libs 165 164 … … 172 171 $(GLOBALDEPS_CFLAGS) 173 172 Programs_testkjs_LDADD = \ 174 libJavaScriptCore.la \ 175 $(GLOBALDEPS_LIBS) \ 176 $(ICU_LIBS) 173 libJavaScriptCore.la 177 174 Programs_testkjs_LDFLAGS = -rpath $(CURDIR)/.libs 178 175 -
trunk/WebKitTools/ChangeLog
r30702 r30707 1 2008-03-02 Brent Fulgham <bfulgham@gmail.com> 2 3 Reviewed by Alp Toker. 4 5 Remove some needless LIBS. 6 7 * GNUmakefile.am: 8 1 9 2008-03-02 Alp Toker <alp@atoker.com> 2 10 -
trunk/WebKitTools/GNUmakefile.am
r30702 r30707 17 17 18 18 Programs_GtkLauncher_LDADD = \ 19 $(GLOBALDEPS_LIBS) \20 $(WEBKITDEPS_LIBS) \21 19 libwebkit-1.0.la 22 20 … … 46 44 47 45 Programs_DumpRenderTree_LDADD = \ 48 $(GLOBALDEPS_LIBS) \49 $(WEBKITDEPS_LIBS) \50 46 libwebkit-1.0.la 51 47
Note:
See TracChangeset
for help on using the changeset viewer.