Skip to content

Commit

Permalink
Bug 756720 - configure fails to find libgoffice 0.10-10 (0.10.18-1)
Browse files Browse the repository at this point in the history
While we can't support libgoffice 0.10 because that would require gtk3
we can improve the error message if no libgoffice 0.8.x version is found.
  • Loading branch information
gjanssens committed Nov 3, 2015
1 parent 16bc91d commit 68f1db9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ then
AC_SUBST(GDK_PIXBUF_LIBS)

# checks for goffice
PKG_CHECK_MODULES(GOFFICE, libgoffice-0.8 >= 0.7.0, [goffice=1], [AC_MSG_ERROR([Cannot find libgoffice.>= 0.7.0])])
PKG_CHECK_MODULES(GOFFICE, libgoffice-0.8 >= 0.7.0 libgoffice-0.8 < 0.9.0, [goffice=1], [AC_MSG_ERROR([Cannot find libgoffice >= 0.7.0 and < 0.9.0])])
AS_SCRUB_INCLUDE(GOFFICE_CFLAGS)
AC_SUBST(GOFFICE_CFLAGS)
AC_SUBST(GOFFICE_LIBS)
Expand Down

0 comments on commit 68f1db9

Please sign in to comment.