1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

configure.ac: glib must be at least 2.26

Profanity uses GDateTime structure that appeared in glib-2.26.
This commit is contained in:
Dmitry Podgorny 2014-01-01 22:17:51 +02:00
parent 2519e450e3
commit 249e60e07d

View File

@ -62,8 +62,8 @@ PKG_CHECK_MODULES([openssl], [openssl], [],
# TODO: autodetect of XML parser libstrophe linked with
PKG_CHECK_MODULES([glib], [glib-2.0], [],
[AC_MSG_ERROR([glib is required for profanity])])
PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.26], [],
[AC_MSG_ERROR([glib 2.26 or higher is required for profanity])])
PKG_CHECK_MODULES([curl], [libcurl], [],
[AC_MSG_ERROR([libcurl is required for profanity])])