Lower the librsvg requirement to 2.39 (works on CentOS7 with
authorwwp <wwp@free.fr>
Tue, 29 Aug 2017 12:41:23 +0000 (14:41 +0200)
committerwwp <wwp@free.fr>
Tue, 29 Aug 2017 12:41:23 +0000 (14:41 +0200)
this).

configure.ac

index 9e4933e9f833a91ba6cf4d42eb437ec60c27515d..108d9b46354136e960bbf89f569551f5408c9792 100644 (file)
@@ -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