Skip to content
This repository has been archived by the owner on Nov 17, 2020. It is now read-only.

Commit

Permalink
Bug 614323 - configure checks for evince-*-2.29, which doesn't work f…
Browse files Browse the repository at this point in the history
…or evince 2.30
  • Loading branch information
Gustavo Carneiro committed Mar 30, 2010
1 parent d004331 commit c6f173a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ AM_CONDITIONAL(BUILD_EVOLUTION_ECAL, $build_evolution_ecal)
dnl should we build the evince module
AC_ARG_BINDING([evince],[YES])
if $build_evince; then
PKG_CHECK_MODULES(EVINCE, [evince-document-2.29 evince-view-2.29],
PKG_CHECK_MODULES(EVINCE, [evince-document-2.30 evince-view-2.30],
build_evince=true,
build_evince=false)
if test -n "$export_dynamic"; then
Expand Down
2 changes: 1 addition & 1 deletion evince/wscript
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
def configure(conf):
conf.env.append_value('MODULES_AVAILABLE', 'evince')
if 'evince' in conf.env['ENABLE_MODULES'] or 'all' in conf.env['ENABLE_MODULES']:
if conf.pkg_check_modules('EVINCE', 'evince-document-2.29 evince-view-2.29 pygobject-2.0 pygtk-2.0',
if conf.pkg_check_modules('EVINCE', 'evince-document-2.30 evince-view-2.30 pygobject-2.0 pygtk-2.0',
mandatory=False):
conf.env.append_value('MODULES_TO_BUILD', 'evince')

Expand Down

0 comments on commit c6f173a

Please sign in to comment.