From 9bf1f44fb30a7768c0c259ccf507a5947b5b627c Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Thu, 22 Aug 2013 13:59:05 +0100 Subject: [PATCH] better fix for gettext macro versioning which doesn't break legacy support... --- configure.ac | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configure.ac b/configure.ac index d37f258515..6cb50fe249 100644 --- a/configure.ac +++ b/configure.ac @@ -236,8 +236,15 @@ po_makefile_in=po/Makefile.in have_po="yes" ], [ +m4_ifdef([AM_GNU_GETTEXT], [ +AM_GNU_GETTEXT([external]) +po_makefile_in=po/Makefile.in +have_po="yes" +], +[ have_po="no" ]) +]) AC_SUBST([LTLIBINTL]) LOCALE_DIR="${localedir}" AC_SUBST(LOCALE_DIR)