[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
eric at webkit.org
eric at webkit.org
Tue Jan 5 23:51:51 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 2a2323e756ff07905e4161c4f71b9bc0387478bb
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Thu Dec 17 11:48:53 2009 +0000
2009-12-17 Evan Martin <evan at chromium.org>
Reviewed by Xan Lopez.
gtk: always use standard include paths, regardless of settings.
WebKit style is to wrap the body of a header in #if ENABLE(FOO),
so they're always safe to include whether the features are enabled or
not.
This fixes building with --disable-database and other flags.
* GNUmakefile.am:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52245 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index 7594c72..a08395a 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,16 @@
+2009-12-17 Evan Martin <evan at chromium.org>
+
+ Reviewed by Xan Lopez.
+
+ gtk: always use standard include paths, regardless of settings.
+ WebKit style is to wrap the body of a header in #if ENABLE(FOO),
+ so they're always safe to include whether the features are enabled or
+ not.
+
+ This fixes building with --disable-database and other flags.
+
+ * GNUmakefile.am:
+
2009-12-17 Gustavo Noronha Silva <gustavo.noronha at collabora.co.uk>
Unreviewed. Build fixes for make distcheck.
diff --git a/WebCore/GNUmakefile.am b/WebCore/GNUmakefile.am
index f8e3647..160fe93 100644
--- a/WebCore/GNUmakefile.am
+++ b/WebCore/GNUmakefile.am
@@ -43,10 +43,12 @@ webcore_cppflags += \
-I$(srcdir)/WebCore/platform/image-decoders/xbm \
-I$(srcdir)/WebCore/platform/mock \
-I$(srcdir)/WebCore/platform/network \
+ -I$(srcdir)/WebCore/platform/sql \
-I$(srcdir)/WebCore/platform/text \
-I$(srcdir)/WebCore/plugins \
-I$(srcdir)/WebCore/rendering \
-I$(srcdir)/WebCore/rendering/style \
+ -I$(srcdir)/WebCore/storage \
-I$(srcdir)/WebCore/workers \
-I$(srcdir)/WebCore/xml \
-I$(top_builddir)/WebCore/bindings/js \
@@ -2181,9 +2183,7 @@ IDL_BINDINGS += \
WebCore/storage/SQLTransaction.idl
webcore_cppflags += \
- -DENABLE_DATABASE=1 \
- -I$(top_srcdir)/WebCore/platform/sql \
- -I$(top_srcdir)/WebCore/storage
+ -DENABLE_DATABASE=1
webcore_sources += \
WebCore/bindings/js/JSCustomSQLStatementCallback.cpp \
@@ -2285,8 +2285,7 @@ IDL_BINDINGS += \
WebCore/storage/StorageEvent.idl
webcore_cppflags += \
- -DENABLE_DOM_STORAGE=1 \
- -I$(top_srcdir)/WebCore/storage
+ -DENABLE_DOM_STORAGE=1
webcore_sources += \
WebCore/bindings/js/JSStorageCustom.cpp \
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list