commit c03433163c1b3d0d9aaefc82c7c5a5fa2c413a58
parent 7ee8518c9e2538f4c857e4d94dfcb2718edde48c
Author: Michael Rasmussen <mir@datanom.net>
Date: Tue, 29 Aug 2017 23:07:36 +0200
Merge branch 'master' of ssh+git://git.claws-mail.org/home/git/claws
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
@@ -934,7 +934,7 @@ dnl librsvg
AC_MSG_CHECKING([whether to use librsvg])
if test x"$enable_svg" = xyes; then
AC_MSG_RESULT(yes)
- PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.40.5 cairo >= 1.0.0],
+ PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.39.0 cairo >= 1.0.0],
[
AC_SUBST(SVG_CFLAGS)
AC_SUBST(SVG_LIBS)
@@ -942,7 +942,7 @@ if test x"$enable_svg" = xyes; then
enable_svg=yes
],
[
- AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.40.5 was not found])
+ AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.39.0 was not found])
enable_svg=no
])
else