]> git.saurik.com Git - bison.git/commitdiff
Added i18n support.
authorJesse Thilo <jthilo@gnu.org>
Tue, 23 Mar 1999 00:48:58 +0000 (00:48 +0000)
committerJesse Thilo <jthilo@gnu.org>
Tue, 23 Mar 1999 00:48:58 +0000 (00:48 +0000)
Makefile.am
acconfig.h
configure.in
po/.cvsignore

index 4727ffd4ccced819386c75d486baca3532dd1eab..effed99792046466e0882e7f25a1d03e2e9fda87 100644 (file)
@@ -1,6 +1,8 @@
 ## Process this file with automake to produce Makefile.in -*-Makefile-*-
 AUTOMAKE_OPTIONS = 1.4 ansi2knr
 
+SUBDIRS = intl po
+
 bin_PROGRAMS = bison
 
 bison_SOURCES = LR0.c allocate.c closure.c conflicts.c derives.c       \
@@ -27,4 +29,4 @@ bison.simple: bison.s1 Makefile
        sed -e "/^#line/ s|bison|$(datadir)/bison|" -e "s/@bison_version@/$(VERSION)/" < $(srcdir)/bison.s1 > $@-tmp
        mv $@-tmp $@
 
-DISTCLEANFILES = bison.simple
+DISTCLEANFILES = bison.simple intl/libintl.h
index eed30ed0b73871ecdff6a8ea9904230fe84e8e54..fd8cc099b3f586e0c4316b658cb1e0770181822d 100644 (file)
 /* Define if the compiler understands prototypes.  */
 #undef PROTOTYPES
 
+/* Define to 1 if NLS is requested.  */
+#undef ENABLE_NLS
+
+/* Define as 1 if you have catgets and don't want to use GNU gettext.  */
+#undef HAVE_CATGETS
+
+/* Define as 1 if you have gettext and don't want to use GNU gettext.  */
+#undef HAVE_GETTEXT
+
+/* Define if your locale.h file contains LC_MESSAGES.  */
+#undef HAVE_LC_MESSAGES
+
+/* Define to 1 if you have the stpcpy function.  */
+#undef HAVE_STPCPY
+
 /* The location of the simple parser (bison.simple).  */
 #undef XPFILE
 
index 5711d67446e4d6bd359c2443eee496b7e3bc5513..ab54e81ede2d9032f928c1a5c100dec1ca903fe1 100644 (file)
@@ -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)
index 2c1e7e5e49984de705e55b963f812340fffad398..7a5c3182d28886eabb0ab43db20165c3406d84a8 100644 (file)
@@ -1,3 +1,4 @@
+*.gmo
 Makefile
 Makefile.in
 POTFILES