diff options
author | Xan Lopez <xan@igalia.com> | 2013-03-06 18:50:23 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-03-06 18:50:23 +0800 |
commit | fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d (patch) | |
tree | 9e485002ec34071141ee0df60176896c5d7e787e | |
parent | 4f1ba706e79fddede7756360fbc1a1d2fcfce93a (diff) | |
download | gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar.gz gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar.bz2 gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar.lz gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar.xz gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.tar.zst gsoc2013-epiphany-fe0eceee0f75e3f2189e27e0222a2c8119ed9d1d.zip |
configure.ac: use WebKit2 by default
We are almost certainly going to switch to WebKit2 by default for 3.8,
so change the flag here. There's very few regressions left and we have
patches for them, but if we can always change the flag back right
before release. Meanwhile, give this some wider exposure in the RC.
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 0e6300ebd..ba768e7ba 100644 --- a/configure.ac +++ b/configure.ac @@ -93,8 +93,8 @@ GCR_REQUIRED=3.5.5 AVAHI_REQUIRED=0.6.22 AC_ARG_WITH(webkit2, - [AS_HELP_STRING([--with-webkit2],[build with WebKit2 [default=no]])], - [],[with_webkit2=no]) + [AS_HELP_STRING([--with-webkit2],[build with WebKit2 [default=yes]])], + [],[with_webkit2=yes]) if test "x$with_webkit2" != xno; then WEBKIT_GTK_PC_NAME=webkit2gtk-3.0 |