diff options
author | Xan Lopez <xan@igalia.com> | 2013-03-21 16:59:05 +0800 |
---|---|---|
committer | Xan Lopez <xan@igalia.com> | 2013-03-21 17:05:54 +0800 |
commit | 637a9b64bcc61bb07b30e030056b1e6756ecea8c (patch) | |
tree | cac88059dbe8b1a2c481e262b1cc76c03c8b6bf5 | |
parent | 6573f558aaef09dde64ec4e820492ef95df5c2c0 (diff) | |
download | gsoc2013-epiphany-637a9b64bcc61bb07b30e030056b1e6756ecea8c.tar.gz gsoc2013-epiphany-637a9b64bcc61bb07b30e030056b1e6756ecea8c.tar.zst gsoc2013-epiphany-637a9b64bcc61bb07b30e030056b1e6756ecea8c.zip |
configure.ac: remove WebKit2 config stuff
The post 3.8 world is WebKit2 only.
-rw-r--r-- | configure.ac | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index e0e6886f1..cdf1954f3 100644 --- a/configure.ac +++ b/configure.ac @@ -89,16 +89,9 @@ LIBNOTIFY_REQUIRED=0.5.1 GCR_REQUIRED=3.5.5 AVAHI_REQUIRED=0.6.22 -# 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 - AC_DEFINE([HAVE_WEBKIT2],[1],[Define if building with WebKit2]) -else - WEBKIT_GTK_PC_NAME=webkitgtk-3.0 -fi -AM_CONDITIONAL(WITH_WEBKIT2, test "x$with_webkit2" != xno) +WEBKIT_GTK_PC_NAME=webkit2gtk-3.0 +AC_DEFINE([HAVE_WEBKIT2],[1],[Define if building with WebKit2]) +AM_CONDITIONAL(WITH_WEBKIT2, [test "yes" = "yes"]) # Tests @@ -283,5 +276,4 @@ Epiphany was configured with the following options: Code coverage : $enable_code_coverage NSS support : $enable_nss - WebKit2 : $with_webkit2 " |