From: Oliver Kurth Date: Tue, 24 Apr 2018 00:08:17 +0000 (-0700) Subject: Bump up the version requirement for glib and friends to 2.34.0 X-Git-Tag: stable-10.3.0~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba6c319f18d294b36c0e989f851fbfdbc8a629b7;p=thirdparty%2Fopen-vm-tools.git Bump up the version requirement for glib and friends to 2.34.0 For open-vm-tools, we are bumping up the minimum version requirement to 2.34.0 for glib and its friends. Modified the configure.ac with the proper new version checks. Also, updated the error message with the proper version. --- diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index dc7d62b0d..b125d9212 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -426,39 +426,39 @@ AC_VMW_CHECK_LIB([glib-2.0], [GLIB2], [glib-2.0], [], - [2.14.0], + [2.34.0], [glib.h], [g_key_file_new], [], - [AC_MSG_ERROR([glib2 >= 2.14.0 is required.])]) + [AC_MSG_ERROR([glib2 >= 2.34.0 is required.])]) AC_VMW_CHECK_LIB([gmodule-2.0], [GMODULE], [gmodule-2.0], [], - [2.14.0], + [2.34.0], [], [], [], - [AC_MSG_ERROR([gmodule >= 2.14.0 is required.])]) + [AC_MSG_ERROR([gmodule >= 2.34.0 is required.])]) AC_VMW_CHECK_LIB([gobject-2.0], [GOBJECT], [gobject-2.0], [], - [2.14.0], + [2.34.0], [glib-object.h], [], [], - [AC_MSG_ERROR([gobject >= 2.14.0 is required.])]) + [AC_MSG_ERROR([gobject >= 2.34.0 is required.])]) AC_VMW_CHECK_LIB([gthread-2.0], [GTHREAD], [gthread-2.0], [], - [2.14.0], + [2.34.0], [], [], [], - [AC_MSG_ERROR([glib >= 2.14.0 is required.])]) + [AC_MSG_ERROR([gthread >= 2.34.0 is required.])]) AC_CHECK_PROG([have_genmarshal], [glib-genmarshal], [yes],