From: Wilfried Göesgens Date: Thu, 29 Jul 2010 17:52:47 +0000 (+0000) Subject: * check for i18 stuff X-Git-Tag: v8.01~997 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=80a3a9574aa4642163e5bd8d49a3bdba22e39f01 * check for i18 stuff --- diff --git a/citadel/configure.ac b/citadel/configure.ac index 23e7d203b..bbf3ce77c 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -408,6 +408,30 @@ dnl respective libraries, because some systems (like Irix) have both, and the dnl non-libc versions may be broken. AC_CHECK_FUNCS(crypt gethostbyname connect flock getpwnam_r getpwuid_r getloadavg) +AC_CHECK_FUNCS(strftime_l uselocale gettext) + +if test "$ok_nls" != "no"; then + AC_CHECK_PROG(ok_xgettext, xgettext, yes, no) + ok_nls=$ok_xgettext +fi + +if test "$ok_nls" != "no"; then + AC_CHECK_PROG(ok_msgmerge, msgmerge, yes, no) + ok_nls=$ok_msgmerge +fi + +if test "$ok_nls" != "no"; then + AC_CHECK_PROG(ok_msgfmt, msgfmt, yes, no) + ok_nls=$ok_msgfmt +fi + +if test "$ok_nls" != "no"; then + AC_MSG_RESULT(WebCit will be built with national language support.) + AC_DEFINE(ENABLE_NLS, [], [whether we have NLS support]) + PROG_SUBDIRS="$PROG_SUBDIRS po" +else + AC_MSG_RESULT(WebCit will be built without national language support.) +fi dnl disable backtrace if we don't want it. AC_ARG_WITH(backtrace,