configure.ac: Avoid trouble with missing AM_LANGINFO_CODESET

Use gettext 0.19.

gettext 0.20 apparently doesn't have AM_LANGINFO_CODESET - sort that out
some other day.
This commit is contained in:
Kim Woelders 2020-06-19 19:41:00 +02:00
parent b21e0cd093
commit 60a3937341
1 changed files with 4 additions and 4 deletions

View File

@ -58,10 +58,10 @@ AM_ICONV
AM_LANGINFO_CODESET
AM_GNU_GETTEXT([external])
AM_GNU_GETTEXT_VERSION([0.18])
m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION], [
AM_GNU_GETTEXT_REQUIRE_VERSION([0.18])
])
AM_GNU_GETTEXT_VERSION([0.19])
#m4_ifdef([AM_GNU_GETTEXT_REQUIRE_VERSION], [
#AM_GNU_GETTEXT_REQUIRE_VERSION([0.19])
#])
AC_CHECK_FUNCS([clock_gettime], [have_clock_gettime=yes],
[AC_CHECK_LIB([rt], [clock_gettime], [have_clock_gettime=-lrt],