2009-03-17 Gustavo Noronha Silva <gns@gnome.org>
Reviewed by Mark Rowe.
Enable HTML5 media elements support by default in the GTK+ port.
* configure.ac:
WebKitTools:
2009-03-17 Gustavo Noronha Silva <gns@gnome.org>
Reviewed by Mark Rowe.
Enable HTML5 media elements support by default also for the GTK+
port.
* Scripts/build-webkit:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@41776 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/ChangeLog b/ChangeLog
index c12b87b..3c32227 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-03-17 Gustavo Noronha Silva <gns@gnome.org>
+
+ Reviewed by Mark Rowe.
+
+ Enable HTML5 media elements support by default in the GTK+ port.
+
+ * configure.ac:
+
2009-03-17 Mike Hommey <glandium@debian.org>
Reviewed by Holger Freyther.
diff --git a/WebKitTools/ChangeLog b/WebKitTools/ChangeLog
index 9db8c30..56f35db 100644
--- a/WebKitTools/ChangeLog
+++ b/WebKitTools/ChangeLog
@@ -1,3 +1,12 @@
+2009-03-17 Gustavo Noronha Silva <gns@gnome.org>
+
+ Reviewed by Mark Rowe.
+
+ Enable HTML5 media elements support by default also for the GTK+
+ port.
+
+ * Scripts/build-webkit:
+
2009-03-17 Kevin Ollivier <kevino@theolliviers.com>
Reviewed by Mark Rowe.
diff --git a/WebKitTools/Scripts/build-webkit b/WebKitTools/Scripts/build-webkit
index b1a04cf..a0cd1e9 100755
--- a/WebKitTools/Scripts/build-webkit
+++ b/WebKitTools/Scripts/build-webkit
@@ -56,7 +56,7 @@
my $xsltSupport = 1;
my $wmlSupport = 0;
my $coverageSupport = 0;
-my $videoSupport = isAppleWebKit(); # Enable by default for Apple's builds
+my $videoSupport = (isAppleWebKit() || isGtk()); # Enable by default for Apple's builds and Gtk+
my $workersSupport = (isAppleWebKit() || isGtk()); # Enable by default for Apple's builds (mac/win) and Gtk+
my $geolocationSupport = (isAppleMacWebKit() && !isTiger() && !isLeopard());
my $showHelp = 0;
diff --git a/configure.ac b/configure.ac
index bb06750..2535c31 100644
--- a/configure.ac
+++ b/configure.ac
@@ -322,8 +322,8 @@
AC_MSG_CHECKING([whether to enable HTML5 video support])
AC_ARG_ENABLE(video,
AC_HELP_STRING([--enable-video],
- [enable HTML5 video support [default=no]]),
- [],[enable_video="no"])
+ [enable HTML5 video support [default=yes]]),
+ [],[enable_video="yes"])
AC_MSG_RESULT([$enable_video])
# check whether to enable XPath support