From fc8ea4ec4f616d9f504d6e654b785766e428fdb2 Mon Sep 17 00:00:00 2001 From: Michael Vetter Date: Mon, 8 Aug 2022 12:55:19 +0200 Subject: [PATCH] Require libstrophe 0.12.2 0.12.2 has some important fixes. Let's require it so users don't stumble upon bugs like https://github.com/profanity-im/profanity/issues/1743 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 408cdbbd..41a0e5dd 100644 --- a/configure.ac +++ b/configure.ac @@ -152,7 +152,7 @@ else fi ## Check for libstrophe -PKG_CHECK_MODULES([libstrophe], [libstrophe >= 0.11.0], +PKG_CHECK_MODULES([libstrophe], [libstrophe >= 0.12.2], [LIBS="$libstrophe_LIBS $LIBS" CFLAGS="$CFLAGS $libstrophe_CFLAGS"]) AC_MSG_CHECKING([whether libstrophe works])