diff options
author | infirit <[email protected]> | 2015-08-31 14:46:09 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-08-31 15:02:43 +0200 |
commit | a96da238fa6ca21dd0c4dffa7d1b63e6a7810fc8 (patch) | |
tree | b4a04951c76dbd05c219b426e5c74746b44a300f | |
parent | 52c1c01e2ea9c4c467266124e4221f64d77425f9 (diff) | |
download | atril-a96da238fa6ca21dd0c4dffa7d1b63e6a7810fc8.tar.bz2 atril-a96da238fa6ca21dd0c4dffa7d1b63e6a7810fc8.tar.xz |
configure: properly show "epub backend: no" in summary if it's off
Thanks to @monsta for reporting the problem.
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 244fddb8..b08974ed 100644 --- a/configure.ac +++ b/configure.ac @@ -695,6 +695,7 @@ AC_ARG_ENABLE(epub, [enable_epub=$enableval], [enable_epub=yes]) +have_webkit="no" if test "x$enable_epub" = "xyes"; then case "$with_gtk" in 2.0) @@ -717,7 +718,6 @@ esac if test "x$have_webkit" = "xyes"; then AC_DEFINE([ENABLE_EPUB], [1], [Enable support for ePub documents.]) else - have_webkit="no" AC_MSG_WARN(["ePub support is disabled."]) fi fi |