diff options
author | Paul Smith <psmith@gnu.org> | 2000-01-22 08:57:17 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2000-01-22 08:57:17 +0000 |
commit | 2fd5b943d10664ddd815348e86b082aa2c5d2bfb (patch) | |
tree | cbaa9ce561306ae1d2c547d25d66c1494fbed0a2 /configure.in | |
parent | 74fca88bf3cfc802308018faf69b0231876c633c (diff) | |
download | gunmake-2fd5b943d10664ddd815348e86b082aa2c5d2bfb.tar.gz |
* Implement GNU gettext internationalization support in GNU make.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 4362b6c..1700fc8 100644 --- a/configure.in +++ b/configure.in @@ -21,7 +21,6 @@ AC_MINIX AC_CHECK_PROG(PERL, perl, perl, perl) dnl Needed for the test suite (only) - dnl This test must come as early as possible after the compiler configuration dnl tests, because the choice of the file model can (in principle) affect dnl whether functions and headers are available, whether they work, etc. @@ -107,6 +106,11 @@ AC_MSG_RESULT($make_cv_union_wait) AC_DECL_SYS_SIGLIST +dnl Handle internationalization + +ALL_LINGUAS= +AM_GNU_GETTEXT + # The presence of the following is not meant to imply # that make necessarily works on those systems. AC_CHECK_LIB(sun, getpwnam) @@ -222,7 +226,7 @@ if test -r "$srcdir/maintMakefile"; then fi AC_SUBST_FILE(MAINT_MAKEFILE) -AC_OUTPUT(build.sh Makefile glob/Makefile) +AC_OUTPUT(build.sh Makefile glob/Makefile intl/Makefile po/Makefile.in) dnl If we don't yet have build.sh.in, build.sh is a bogus 0-length file dnl so remove it. |