Reviewed by Martin Robinson.
[GTK] CodeGeneratorGObject not picking up FEATURE_DEFINES
https://bugs.webkit.org/show_bug.cgi?id=44608
Move FEATURE_DEFINES declaration here, since it's used by the
bindings code generator. Also, fix typo in the variable holding
the defines.
* GNUmakefile.am:
WebCore:
2010-08-25 Xan Lopez <xlopez@igalia.com>
Reviewed by Martin Robinson.
[GTK] CodeGeneratorGObject not picking up FEATURE_DEFINES
https://bugs.webkit.org/show_bug.cgi?id=44608
Move FEATURE_DEFINES declaration to the toplevel GNUmakefile.am,
since it's used there now too.
* GNUmakefile.am:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@66021
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-08-25 Xan Lopez <xlopez@igalia.com>
+
+ Reviewed by Martin Robinson.
+
+ [GTK] CodeGeneratorGObject not picking up FEATURE_DEFINES
+ https://bugs.webkit.org/show_bug.cgi?id=44608
+
+ Move FEATURE_DEFINES declaration here, since it's used by the
+ bindings code generator. Also, fix typo in the variable holding
+ the defines.
+
+ * GNUmakefile.am:
+
2010-08-25 Rafael Antognolli <antognolli@profusion.mobi>
Unreviewed build fix.
$(AM_V_GEN)cp -f $< $@
# Filter out SVG for now
+FEATURE_DEFINES :=
gdom_feature_defines := $(filter-out ENABLE-SVG%, $(FEATURE_DEFINES))
DerivedSources/webkit/WebKitDOM%.cpp DerivedSources/webkit/WebKitDOM%.h DerivedSources/webkit/WebKitDOM%Private.h:: %.idl $(SCRIPTS_BINDINGS) $(WebCore)/bindings/scripts/CodeGeneratorGObject.pm
- $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/generate-bindings.pl --include $(WebCore)/dom --include $(WebCore)/html --include $(WebCore)/css --include $(WebCore)/page --include $(WebCore)/xml --include $(WebCore)/svg --outputDir "$(GENSOURCES_WEBKIT)" --defines "LANGUAGE_GOBJECT=1 $(gdom_features_defines)" --generator GObject $<
+ $(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/generate-bindings.pl --include $(WebCore)/dom --include $(WebCore)/html --include $(WebCore)/css --include $(WebCore)/page --include $(WebCore)/xml --include $(WebCore)/svg --outputDir "$(GENSOURCES_WEBKIT)" --defines "LANGUAGE_GOBJECT=1 $(gdom_feature_defines)" --generator GObject $<
webkitgtk_cppflags += \
-DBUILDING_WEBKIT \
+2010-08-25 Xan Lopez <xlopez@igalia.com>
+
+ Reviewed by Martin Robinson.
+
+ [GTK] CodeGeneratorGObject not picking up FEATURE_DEFINES
+ https://bugs.webkit.org/show_bug.cgi?id=44608
+
+ Move FEATURE_DEFINES declaration to the toplevel GNUmakefile.am,
+ since it's used there now too.
+
+ * GNUmakefile.am:
+
2010-08-25 Dawit Alemayehu <adawit@kde.org>
Reviewed by Ariya Hidayat.
-FEATURE_DEFINES :=
SVG_FEATURES :=
HTML_FEATURES :=