diff mbox series

build: Drop GLib 2.60 requirements

Message ID 20240206162453.1024228-1-denkenz@gmail.com (mailing list archive)
State Accepted
Commit d70bcc06096a911955ca87487fd08cf4a3f5c6e2
Headers show
Series build: Drop GLib 2.60 requirements | expand

Commit Message

Denis Kenzior Feb. 6, 2024, 4:24 p.m. UTC
Since g_utf8_validate_len is no longer used, requiring GLib 2.60 is no
longer needed.  Drop back to the original 2.32 requirement.
---
 configure.ac | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

patchwork-bot+ofono@kernel.org Feb. 6, 2024, 5 p.m. UTC | #1
Hello:

This patch was applied to ofono.git (master)
by Denis Kenzior <denkenz@gmail.com>:

On Tue,  6 Feb 2024 10:24:34 -0600 you wrote:
> Since g_utf8_validate_len is no longer used, requiring GLib 2.60 is no
> longer needed.  Drop back to the original 2.32 requirement.
> ---
>  configure.ac | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Here is the summary with links:
  - build: Drop GLib 2.60 requirements
    https://git.kernel.org/pub/scm/network/ofono/ofono.git/?id=d70bcc06096a

You are awesome, thank you!
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index b866e5487443..237496e7e772 100644
--- a/configure.ac
+++ b/configure.ac
@@ -131,8 +131,8 @@  PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.68, [
 	AC_DEFINE_UNQUOTED(HAVE_G_MEMDUP2, 1,
 			[Define to 1 if you have the `g_memdup2' function.])
 ], [
-	PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.60, dummy=yes,
-				AC_MSG_ERROR(GLib >= 2.60 is required))
+	PKG_CHECK_MODULES(GLIB, glib-2.0 >= 2.32, dummy=yes,
+				AC_MSG_ERROR(GLib >= 2.32 is required))
 ])
 AC_SUBST(GLIB_CFLAGS)
 AC_SUBST(GLIB_LIBS)