diff options
author | raveit65 <[email protected]> | 2016-06-24 20:00:40 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2016-06-29 16:23:03 +0200 |
commit | d49b6aee6d2e889a08fe17b0788b16ba15e9da3f (patch) | |
tree | 1e68c7a60799f134106ed57223bc0e22000d2590 | |
parent | 0cd127f0d86bda4a6f1645745af7b1cab84490f0 (diff) | |
download | atril-d49b6aee6d2e889a08fe17b0788b16ba15e9da3f.tar.bz2 atril-d49b6aee6d2e889a08fe17b0788b16ba15e9da3f.tar.xz |
xps: Fill version information of EvDocumentBackendInfo
https://git.gnome.org/browse/evince/commit/?id=3fee54a
-rw-r--r-- | backend/xps/xps-document.c | 3 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/backend/xps/xps-document.c b/backend/xps/xps-document.c index 53073e42..602220ac 100644 --- a/backend/xps/xps-document.c +++ b/backend/xps/xps-document.c @@ -195,8 +195,7 @@ xps_document_get_backend_info (EvDocument *document, EvDocumentBackendInfo *info) { info->name = "libgxps"; - /* FIXME */ - info->version = ""; + info->version = GXPS_VERSION_STRING; return TRUE; } diff --git a/configure.ac b/configure.ac index f8da1411..33fbd3b5 100644 --- a/configure.ac +++ b/configure.ac @@ -559,7 +559,7 @@ AC_ARG_ENABLE(xps, [enable_xps=yes]) if test "x$enable_xps" = "xyes"; then - GXPS_REQUIRED=0.2.0 + GXPS_REQUIRED=0.2.1 PKG_CHECK_MODULES(GXPS, libgxps >= $GXPS_REQUIRED,enable_xps=yes,enable_xps=no) if test "x$enable_xps" = "xyes"; then |