diff options
author | Andreas Jaeger <aj@suse.de> | 2001-04-17 14:37:40 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2001-04-17 14:37:40 +0000 |
commit | 036167499677ab8774c61496679fbeffd8fbba40 (patch) | |
tree | 4cf98f1227a6e94918b38032e5f574a6c150fab8 /configure.in | |
parent | 9b7ee67e0c61b046f86062ef8e2ba91f352ebcc1 (diff) | |
download | glibc-036167499677ab8774c61496679fbeffd8fbba40.tar glibc-036167499677ab8774c61496679fbeffd8fbba40.tar.gz glibc-036167499677ab8774c61496679fbeffd8fbba40.tar.bz2 glibc-036167499677ab8774c61496679fbeffd8fbba40.zip |
Move test for critical programs up.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/configure.in b/configure.in index b708faf834..f280af70b6 100644 --- a/configure.in +++ b/configure.in @@ -564,6 +564,14 @@ AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version, [GNU Make[^0-9]*\([0-9][0-9.]*\)], [3.79* | 3.[89]*], critic_missing=t) + +if test -n "$critic_missing"; then +AC_MSG_ERROR([ +*** Some critical program is missing or too old. +*** Check the INSTALL file for required versions.]) +fi + + AC_CHECK_PROG_VER(MSGFMT, gnumsgfmt gmsgfmt msgfmt, --version, [GNU gettext.* \([0-9]*\.[0-9.]*\)], [0.[1-9][0-9].* | [1-9].*], MSGFMT=: aux_missing=t) @@ -591,12 +599,6 @@ AC_CHECK_TOOL(MIG, mig) # [GNU assembler.* \([0-9]*\.[0-9.]*\(-ia64-[0-9]*\)*\)], # [2.10.[1-9]* | 2.1[1-9]* | 2.9-ia64-*], AS=: critic_missing=t) -if test -n "$critic_missing"; then -AC_MSG_ERROR([ -*** Some critical program is missing or too old. -*** Check the INSTALL file for required versions.]) -fi - test -n "$aux_missing" && AC_MSG_WARN([ *** An auxiliary program is missing or too old; *** some features will be disabled. |