diff options
author | raveit65 <[email protected]> | 2020-01-03 18:02:35 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-01-12 13:11:13 +0100 |
commit | 13d04135dda574bbaa51f56df1783778f423e0f2 (patch) | |
tree | d932df097a5928a3986aa5468d795f92e3ecffd1 /configure.ac | |
parent | 3a1b4a58792dfc4d954546c044338f5e6f8f9c9b (diff) | |
download | caja-13d04135dda574bbaa51f56df1783778f423e0f2.tar.bz2 caja-13d04135dda574bbaa51f56df1783778f423e0f2.tar.xz |
fm-properties: Remove use of mate-desktop-thumbnail helper
don't use mate_desktop_thumbnail_scale_down_pixbuf().
gdk-pixbuf doesn't have the same bugs when shrinking images by large
factors.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index b834f880..9f13a692 100644 --- a/configure.ac +++ b/configure.ac @@ -2,6 +2,7 @@ AC_PREREQ(2.54) dnl =========================================================================== +m4_define(gdk-pixbuf_minver, 2.36.5) m4_define(glib_minver, 2.58.1) m4_define(gio_minver, 2.50.0) m4_define(mate_desktop_minver, 1.17.3) @@ -33,6 +34,7 @@ m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) AM_MAINTAINER_MODE AC_SUBST([ACLOCAL_AMFLAGS], ["\${ACLOCAL_FLAGS}"]) +AC_SUBST(GDKPIXBUF_REQUIRED, [gdk-pixbuf_minver]) AC_SUBST(GLIB_REQUIRED, [glib_minver]) AC_SUBST(GIO_REQUIRED, [gio_minver]) AC_SUBST(MATE_DESKTOP_REQUIRED, [mate_desktop_minver]) @@ -64,6 +66,7 @@ AC_PATH_PROG([GLA11Y], [gla11y], [true]) AC_CHECK_LIB(m, floor) PKG_CHECK_MODULES(ALL, [ + gdk-pixbuf-2.0 >= gdk-pixbuf_minver glib-2.0 >= glib_minver mate-desktop-2.0 >= mate_desktop_minver gthread-2.0 |