Require SVG library version 2.40.5
authorRicardo Mones <ricardo@mones.org>
Thu, 16 Mar 2017 18:52:27 +0000 (19:52 +0100)
committerRicardo Mones <ricardo@mones.org>
Thu, 16 Mar 2017 18:52:27 +0000 (19:52 +0100)
Fix bug #3778: Claws-mail core dumps when trying to view a HTML email

configure.ac

index 51246fbe7b2b29ba6ecf0cefb9c434068a41ee0b..ecdd2850d2cadc3d53bcf54c23c3ee06702d107e 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.36.0 cairo >= 1.0.0],
+    PKG_CHECK_MODULES([SVG], [librsvg-2.0 >= 2.40.5 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.36 was not found])
+               AC_MSG_NOTICE([SVG support deactivated as librsvg2 >= 2.40.5 was not found])
                enable_svg=no
        ])
 else