diff options
author | Michael Vetter <jubalh@iodoru.org> | 2022-08-08 12:55:19 +0200 |
---|---|---|
committer | Michael Vetter <jubalh@iodoru.org> | 2022-08-08 12:55:19 +0200 |
commit | fc8ea4ec4f616d9f504d6e654b785766e428fdb2 (patch) | |
tree | f58aa45513f2ee93675664eb8487c0d9df5e6586 | |
parent | e309e6862287c2b959e8794313f66c7472e00736 (diff) | |
download | profani-tty-fc8ea4ec4f616d9f504d6e654b785766e428fdb2.tar.gz |
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
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |