kwo pushed a commit to branch master. http://git.enlightenment.org/e16/e16.git/commit/?id=a30f4bf5662e3a169b1178c0fa8568b173c0db66
commit a30f4bf5662e3a169b1178c0fa8568b173c0db66 Author: Kim Woelders <k...@woelders.dk> Date: Fri Oct 25 08:09:18 2019 +0200 Use installed gettext version, if possible Seems reasonable and may avoid warnings like The 'AM_PROG_MKDIR_P' macro is deprecated, ... --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index 3028a9e7..56ed0df2 100644 --- a/configure.ac +++ b/configure.ac @@ -68,6 +68,9 @@ 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]) +]) AC_CHECK_FUNCS([clock_gettime], [have_clock_gettime=yes], [AC_CHECK_LIB([rt], [clock_gettime], [have_clock_gettime=-lrt], --