diff options
author | Paul Smith <psmith@gnu.org> | 2002-07-08 02:26:47 +0000 |
---|---|---|
committer | Paul Smith <psmith@gnu.org> | 2002-07-08 02:26:47 +0000 |
commit | 8572d6adf04d397505770b0b0d5cfd91cf6a92a8 (patch) | |
tree | 8e590714da1d480bef4ca2afbe81fa95c2624de6 /configure.in | |
parent | 4a073980236d80b47a24c5caea3ece4e9bb7e044 (diff) | |
download | gunmake-8572d6adf04d397505770b0b0d5cfd91cf6a92a8.tar.gz |
Major updates in preparation for 3.80.
New version of the manual, put into the doc subdir.
Enhancements: $(eval ...) and $(value ...) functions, various bug
fixes, etc. See the ChangeLog.
More to come.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/configure.in b/configure.in index 36730a0..31a081f 100644 --- a/configure.in +++ b/configure.in @@ -1,6 +1,6 @@ # Process this file with autoconf to produce a configure script. -AC_INIT(GNU make,3.79.2a1,bug-make@gnu.org) +AC_INIT(GNU make,3.80rc1,bug-make@gnu.org) AC_PREREQ(2.53) @@ -31,7 +31,8 @@ AC_ISC_POSIX AC_MINIX # Enable gettext, in "external" mode. -# Maintainers: this requires gettext 0.11 or better! + +GETTEXT_VERSION=0.11.3-pre2 AM_GNU_GETTEXT([external]) # This test must come as early as possible after the compiler configuration @@ -279,7 +280,7 @@ AC_CACHE_VAL(make_cv_sys_gnu_glob, [ #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1 # include <gnu-versions.h> # if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION -# gnu glob + gnu glob # endif #endif ], [AC_MSG_RESULT(yes) @@ -354,7 +355,7 @@ esac # We only generate the build.sh if we have a build.sh.in; we won't have # one before we've created a distribution. -AC_CONFIG_FILES(Makefile glob/Makefile po/Makefile.in config/Makefile) +AC_CONFIG_FILES(Makefile glob/Makefile po/Makefile.in config/Makefile doc/Makefile) if test -f $srcdir/build.sh.in; then AC_CONFIG_FILES(build.sh) |