summaryrefslogtreecommitdiff
path: root/config/programs.m4
diff options
context:
space:
mode:
authorPeter Eisentraut2001-06-02 18:25:18 +0000
committerPeter Eisentraut2001-06-02 18:25:18 +0000
commite54203646176167271dc50a7b8f7bbe0d3ea6e75 (patch)
tree06e6275b18f1d14afeda777f12f31a75d3c8b527 /config/programs.m4
parent58193c5f37838b49043925437e3c99711ca66407 (diff)
Native Language Support (NLS)
Use --enable-nls to turn it on; see installation instructions for details. See developer's guide how to make use of it in programs and how to add translations. psql sources have been almost fully prepared and an incomplete German translation has been provided. In the backend, only elog() calls are currently translatable, and the provided German translation file is more of a placeholder.
Diffstat (limited to 'config/programs.m4')
-rw-r--r--config/programs.m433
1 files changed, 32 insertions, 1 deletions
diff --git a/config/programs.m4 b/config/programs.m4
index b655d38275d..e73844f09ec 100644
--- a/config/programs.m4
+++ b/config/programs.m4
@@ -1,4 +1,4 @@
-# $Header: /cvsroot/pgsql/config/programs.m4,v 1.4 2001/02/10 22:31:42 petere Exp $
+# $Header: /cvsroot/pgsql/config/programs.m4,v 1.5 2001/06/02 18:25:16 petere Exp $
# PGAC_PATH_FLEX
@@ -99,3 +99,34 @@ if test "$pgac_cv_check_readline" != no ; then
else
AC_MSG_RESULT(no)
fi])# PGAC_CHECK_READLINE
+
+
+
+# PGAC_CHECK_GETTEXT
+# ------------------
+
+AC_DEFUN([PGAC_CHECK_GETTEXT],
+[
+ AC_SEARCH_LIBS(gettext, intl, [],
+ [AC_MSG_ERROR([a gettext implementation is required for NLS])])
+ AC_CHECK_HEADER([libintl.h], [],
+ [AC_MSG_ERROR([header file <libintl.h> is required for NLS])])
+ AC_CHECK_PROGS(MSGFMT, msgfmt)
+ if test -z "$MSGFMT"; then
+ AC_MSG_ERROR([msgfmt is required for NLS])
+ fi
+ AC_CHECK_PROGS(MSGMERGE, msgmerge)
+dnl FIXME: We should probably check for version >=0.10.36.
+ AC_CHECK_PROGS(XGETTEXT, xgettext)
+
+ # Note: share/locale is always the default, independent of $datadir
+ if test x"$prefix" = x"NONE"; then
+ localedir="$ac_default_prefix/share/locale"
+ else
+ localedir="$prefix/share/locale"
+ fi
+
+ AC_SUBST(localedir)
+ AC_DEFINE_UNQUOTED(LOCALEDIR, ["$localedir"],
+ [location of locale files])
+])# PGAC_CHECK_GETTEXT