Changed the version of the DEC C++ compiler we test for.

This should not affect systems not running Tru64 Unix


git-svn-id: svn://10.0.0.236/trunk@66854 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jim_nance%yahoo.com
2000-04-22 11:01:07 +00:00
parent 1acc00c9d4
commit bfc3003957
2 changed files with 2 additions and 2 deletions

2
mozilla/configure vendored
View File

@@ -4017,7 +4017,7 @@ cat > conftest.$ac_ext <<EOF
int main() {
#if defined(__DECCXX) && (__DECCXX_VER<60290024)
#if defined(__DECCXX) && (__DECCXX_VER<60190029)
#error "Compiler is too old."
#endif
; return 0; }

View File

@@ -486,7 +486,7 @@ AC_LANG_SAVE
AC_LANG_CPLUSPLUS
AC_MSG_CHECKING(for old DEC C++ compiler)
AC_TRY_COMPILE([], [
#if defined(__DECCXX) && (__DECCXX_VER<60290024)
#if defined(__DECCXX) && (__DECCXX_VER<60190029)
#error "Compiler is too old."
#endif ],
[AC_MSG_RESULT([no])],