From: Tom Tromey Date: Thu, 23 Nov 1995 05:32:51 +0000 (+0000) Subject: Include internationalization bits X-Git-Tag: Release-0-25~190 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=992bd504a8ba62c4ab493786e86cd88ac833ee95;p=thirdparty%2Fautomake.git Include internationalization bits --- diff --git a/configure.in b/configure.in index 77d696c3d..35acf65f5 100644 --- a/configure.in +++ b/configure.in @@ -3,10 +3,26 @@ AC_INIT(dist.am) PACKAGE=automake AC_SUBST(PACKAGE) +AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE") VERSION=0.20 AC_SUBST(VERSION) +AC_DEFINE_UNQUOTED(VERSION, "$VERSION") +ALL_LINGUAS= AC_ARG_PROGRAM fp_PROG_INSTALL -AC_OUTPUT(Makefile automake) +dnl +dnl NLS configuration. +dnl + +ud_GNU_GETTEXT +AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl) + +dnl +dnl End of NLS configuration. +dnl + + +AC_OUTPUT([Makefile automake intl/Makefile po/Makefile.in], +[sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])