diff options
author | Xan Lopez <xan@igalia.com> | 2013-03-13 04:14:41 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-03-13 04:15:58 +0800 |
commit | 3b57ce56fc185b59d2c7c8b320d54250c0cd9199 (patch) | |
tree | 1750e76eb459b8d870a8afcb4e0ff7d6874f2c13 | |
parent | 2541eed4d1dfda432e6663fdaab48081c9fef38c (diff) | |
download | gsoc2013-epiphany-3b57ce56fc185b59d2c7c8b320d54250c0cd9199.tar.gz gsoc2013-epiphany-3b57ce56fc185b59d2c7c8b320d54250c0cd9199.tar.zst gsoc2013-epiphany-3b57ce56fc185b59d2c7c8b320d54250c0cd9199.zip |
configure.ac: remove --with-webkit2 flag
Otherwise it's likely some people will start to ship WebKit1 versions
of Epiphany 3.8 with our without knowing what they are doing. For
those that *really* want to use the WebKit1 backend, just set the
'with_webkit2' variable to 'no'.
-rw-r--r-- | configure.ac | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 6c4167f31..07297166e 100644 --- a/configure.ac +++ b/configure.ac @@ -92,9 +92,8 @@ LIBNOTIFY_REQUIRED=0.5.1 GCR_REQUIRED=3.5.5 AVAHI_REQUIRED=0.6.22 -AC_ARG_WITH(webkit2, - [AS_HELP_STRING([--with-webkit2],[build with WebKit2 [default=yes]])], - [],[with_webkit2=yes]) +# Set to 'no' to build with the WebKit1 backend +with_webkit2=yes if test "x$with_webkit2" != xno; then WEBKIT_GTK_PC_NAME=webkit2gtk-3.0 |