diff options
author | infirit <[email protected]> | 2015-08-31 14:46:09 +0200 |
---|---|---|
committer | infirit <[email protected]> | 2015-08-31 14:51:18 +0200 |
commit | 5a88b90d367fe89c31eba4f87f1e5fc367a5130f (patch) | |
tree | a3b12f5b86440f66a2e83cc335ec9a2cd9a80b77 /configure.ac | |
parent | c0d3a0601a68039e565194655ee9e719d29466c7 (diff) | |
download | atril-5a88b90d367fe89c31eba4f87f1e5fc367a5130f.tar.bz2 atril-5a88b90d367fe89c31eba4f87f1e5fc367a5130f.tar.xz |
configure: properly show "epub backend: no" in summary if it's off
Thanks to @monsta for reporting the problem.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 9785e2da..42af4e67 100644 --- a/configure.ac +++ b/configure.ac @@ -587,6 +587,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) @@ -609,7 +610,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 |