[gimp] configure.ac: update the logic that doesn't add FOO_DISABLE_DEPRECATED
- From: Michael Natterer <mitch src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] configure.ac: update the logic that doesn't add FOO_DISABLE_DEPRECATED
- Date: Thu, 31 May 2018 18:42:40 +0000 (UTC)
commit ccf1c2812d10cb76143c54b399a8be3ea39afaf2
Author: Michael Natterer <mitch gimp org>
Date: Thu May 31 20:41:03 2018 +0200
configure.ac: update the logic that doesn't add FOO_DISABLE_DEPRECATED
for future glib and pango versions.
configure.ac | 24 ++++++++++++------------
1 file changed, 12 insertions(+), 12 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 0835737df8..2e0bd8fc39 100644
--- a/configure.ac
+++ b/configure.ac
@@ -749,13 +749,13 @@ if test "x$GDBUS_CODEGEN" = xno; then
add_deps_error([gdbus-codegen], [Could not find gdbus-codegen in your PATH.])
fi
-AC_MSG_CHECKING([if GLib is version 2.43.0 or newer])
-if $PKG_CONFIG --atleast-version=2.43.0 glib-2.0; then
- have_glib_2_43=yes
+AC_MSG_CHECKING([if GLib is version 2.57.0 or newer])
+if $PKG_CONFIG --atleast-version=2.57.0 glib-2.0; then
+ have_glib_2_57=yes
else
- have_glib_2_43=no
+ have_glib_2_57=no
fi
-AC_MSG_RESULT($have_glib_2_43)
+AC_MSG_RESULT($have_glib_2_57)
AC_PATH_PROG(GEGL, gegl, no)
if test "x$GEGL" = xno; then
@@ -813,13 +813,13 @@ CFLAGS="$PANGOCAIRO_CFLAGS $CFLAGS"
PKG_CHECK_MODULES(FONTCONFIG, fontconfig >= fontconfig_required_version,,
[add_deps_error([fontconfig >= fontconfig_required_version])])
-AC_MSG_CHECKING([if Pango is version 1.32.0 or newer])
-if $PKG_CONFIG --atleast-version=1.32.0 pango; then
- have_pango_1_32=yes
+AC_MSG_CHECKING([if Pango is version 1.43.0 or newer])
+if $PKG_CONFIG --atleast-version=1.43.0 pango; then
+ have_pango_1_43=yes
else
- have_pango_1_32=no
+ have_pango_1_43=no
fi
-AC_MSG_RESULT($have_pango_1_32)
+AC_MSG_RESULT($have_pango_1_43)
CFLAGS="$PANGOCAIRO_CFLAGS $CFLAGS"
@@ -2443,11 +2443,11 @@ CPPFLAGS="${CPPFLAGS} -DGIMP_DISABLE_DEPRECATED -DBABL_DISABLE_DEPRECATED -DGSEA
# We must build without problems with future releases of libraries
# and disabling deprecated API risks breaking the build
-if test "x$have_glib_2_43" != "xyes"; then
+if test "x$have_glib_2_57" != "xyes"; then
CPPFLAGS="${CPPFLAGS} -DG_DISABLE_DEPRECATED"
fi
-if test "x$have_pango_1_32" != "xyes"; then
+if test "x$have_pango_1_43" != "xyes"; then
CPPFLAGS="${CPPFLAGS} -DPANGO_DISABLE_DEPRECATED"
fi
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]