diff options
author | Roland McGrath <roland@gnu.org> | 2003-03-19 00:34:41 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-03-19 00:34:41 +0000 |
commit | 32a448ed15dfb6c76c884cf32f077b30b8d664a1 (patch) | |
tree | 9bfa17cc6a5056d4da7a23135e105c37f888a479 /configure.in | |
parent | 5c2d8a87367bdce65576d3d074a3ec64838adb18 (diff) | |
download | glibc-32a448ed15dfb6c76c884cf32f077b30b8d664a1.tar.gz |
* configure.in: Move $critic_missing check after all AC_CHECK_PROG_VER.
* configure: Regenerated.
* sysdeps/unix/sysv/linux/syscalls.list (posix_fadvise64): Fix name.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 4afed305fa..6e46910ebe 100644 --- a/configure.in +++ b/configure.in @@ -656,14 +656,6 @@ AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version, [GNU Make[^0-9]*\([0-9][0-9.]*\)], [3.79* | 3.[89]*], critic_missing="$critic_missing make") - -if test -n "$critic_missing"; then -AC_MSG_ERROR([ -*** These critical programs are missing or too old:$critic_missing -*** Check the INSTALL file for required versions.]) -fi - - AC_CHECK_PROG_VER(MSGFMT, gnumsgfmt gmsgfmt msgfmt, --version, [GNU gettext.* \([0-9]*\.[0-9.]*\)], [0.10.3[6-9]* | 0.10.[4-9][0-9]* | 0.1[1-9]* | 0.[2-9][0-9]* | [1-9].*], @@ -712,6 +704,10 @@ AC_CHECK_PROG_VER(LD, $LD, --version, [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)], [2.1[3-9]*], LD=: critic_missing=t) +test -n "$critic_missing" && AC_MSG_ERROR([ +*** These critical programs are missing or too old:$critic_missing +*** Check the INSTALL file for required versions.]) + test -n "$aux_missing" && AC_MSG_WARN([ *** These auxiliary programs are missing or incompatible versions:$aux_missing *** some features will be disabled. |