2007-07-18 Alex Roitman <shura@gramps-project.org>

* configure.in: Revert checks for pycairo to 1.2.0.



svn: r8738
This commit is contained in:
Alex Roitman 2007-07-18 18:39:30 +00:00
parent 97800df7e3
commit d24c53e271
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,6 @@
2007-07-18 Alex Roitman <shura@gramps-project.org>
* configure.in: Revert checks for pycairo to 1.2.0.
2007-07-18 Johan Gonqvist <johan.gronqvist@gmail.com>
* src/plugins/NarrativeWeb.py:
Narrative web-site plugin chrashes due to handling of notes. (#0001085)

View File

@ -97,13 +97,13 @@ then
fi
AC_MSG_RESULT($has_pygtk)
AC_MSG_CHECKING(Python bindings for cairo (python-cairo>=1.2.6))
AC_MSG_CHECKING(Python bindings for cairo (python-cairo>=1.2.0))
cat > conftest.py <<EOF
$pygtk_require
try:
import cairo
version = cairo.version_info
if version >= (1,2,6):
if version >= (1,2,0):
print_version = '.'.join([[str(i) for i in version]])
out(print_version)
else:
@ -120,7 +120,7 @@ if test NO = "$has_cairo"
then
AC_MSG_ERROR([
**** The python bindings for cairo (python-cairo>=1.2.6) could not be found.])
**** The python bindings for cairo (python-cairo>=1.2.0) could not be found.])
fi
AC_MSG_RESULT($has_cairo)