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

Require at least glib 2.62.

g_date_time_format_iso8601() is only in glib since 2.62.
This commit is contained in:
Michael Vetter 2020-04-06 22:42:39 +02:00
parent f5bdd67dec
commit 9aefbdcb53

View File

@ -166,8 +166,8 @@ AS_IF([test "x$ncurses_cv_wget_wch" != xyes],
[AC_MSG_ERROR([ncurses does not support wide characters])])
### Check for glib libraries
PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.40], [],
[AC_MSG_ERROR([glib 2.40 or higher is required for profanity])])
PKG_CHECK_MODULES([glib], [glib-2.0 >= 2.62], [],
[AC_MSG_ERROR([glib 2.62 or higher is required for profanity])])
PKG_CHECK_MODULES([gio], [gio-2.0], [],
[AC_MSG_ERROR([libgio-2.0 from glib-2.0 is required for profanity])])