diff options
author | Matija Skala <[email protected]> | 2022-02-08 01:00:42 +0100 |
---|---|---|
committer | Robert Antoni Buj Gelonch <[email protected]> | 2022-02-08 10:05:07 +0100 |
commit | c66eccc6585f9a4fd7ef4e4443487e64ec1a95b8 (patch) | |
tree | eb1d49c7d592e2ceef9400f503381ad6625d47c3 | |
parent | 685042aef23656f877515dbd9b241a154e1679d0 (diff) | |
download | caja-c66eccc6585f9a4fd7ef4e4443487e64ec1a95b8.tar.bz2 caja-c66eccc6585f9a4fd7ef4e4443487e64ec1a95b8.tar.xz |
remove '-' from a m4_define
it was not handled correctly
-rw-r--r-- | configure.ac | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index c2319b9d..0e4076f7 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ AC_PREREQ(2.54) dnl =========================================================================== -m4_define(gdk-pixbuf_minver, 2.36.5) +m4_define(gdkpixbuf_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) @@ -40,7 +40,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(GDKPIXBUF_REQUIRED, [gdkpixbuf_minver]) AC_SUBST(GLIB_REQUIRED, [glib_minver]) AC_SUBST(GIO_REQUIRED, [gio_minver]) AC_SUBST(MATE_DESKTOP_REQUIRED, [mate_desktop_minver]) @@ -72,7 +72,7 @@ AC_PATH_PROG([GLA11Y], [gla11y], [true]) AC_CHECK_LIB(m, floor) PKG_CHECK_MODULES(ALL, [ - gdk-pixbuf-2.0 >= gdk-pixbuf_minver + gdk-pixbuf-2.0 >= gdkpixbuf_minver glib-2.0 >= glib_minver mate-desktop-2.0 >= mate_desktop_minver gthread-2.0 |