summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJesse Thilo <jthilo@gnu.org>1999-03-23 00:48:58 +0000
committerJesse Thilo <jthilo@gnu.org>1999-03-23 00:48:58 +0000
commitbbcb769c0ed26bc4a232df6570c6258e08b263e7 (patch)
tree8c20f32eddb01128aa7d4b1688f44bd4e48b6e0a /configure.in
parentca1d9e53ceb05e75f3160e3afdc8b219e3c02794 (diff)
downloadbison-bbcb769c0ed26bc4a232df6570c6258e08b263e7.tar.gz
Added i18n support.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 5711d674..ab54e81e 100644
--- a/configure.in
+++ b/configure.in
@@ -4,6 +4,8 @@ AM_INIT_AUTOMAKE(bison,1.27)
AM_CONFIG_HEADER(config.h:config.hin)
AC_PREREQ(2.13)
+ALL_LINGUAS="de es fr nl"
+
dnl Checks for programs.
AC_PROG_CC
AC_MINIX
@@ -30,9 +32,15 @@ dnl Checks for library functions.
AC_FUNC_ALLOCA
AC_CHECK_FUNCS(mkstemp setlocale)
+AM_GNU_GETTEXT
+
+# This is necessary so that .o files in LIBOBJS are also built via
+# the ANSI2KNR-filtering rules.
+LIBOBJS=`echo $LIBOBJS|sed 's/\.o /\$U.o /g;s/\.o$/\$U.o/'`
+
PFILE="${datadir}/bison.simple"
BISON_DEFINE_FILE(XPFILE, PFILE)
PFILE1="${datadir}/bison.hairy"
BISON_DEFINE_FILE(XPFILE1, PFILE1)
-AC_OUTPUT(Makefile)
+AC_OUTPUT(Makefile intl/Makefile po/Makefile.in)