diff options
author | John Wiegley <johnw@newartisans.com> | 2005-02-10 00:01:40 +0000 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2008-04-13 02:40:57 -0400 |
commit | 1c7669671c46e463251589fad07aa470b27f80e8 (patch) | |
tree | 0a76ad83f7bbf5b24b5d2c971a2dea37b58ffae4 /configure.in | |
parent | a874bc851eec27da958b643e7c0eb4c62f2cd109 (diff) | |
download | fork-ledger-1c7669671c46e463251589fad07aa470b27f80e8.tar.gz fork-ledger-1c7669671c46e463251589fad07aa470b27f80e8.tar.bz2 fork-ledger-1c7669671c46e463251589fad07aa470b27f80e8.zip |
Changes to support building with gcc 2.95.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.in b/configure.in index 3ea18391..0e2e84aa 100644 --- a/configure.in +++ b/configure.in @@ -14,24 +14,6 @@ AC_PROG_RANLIB #AC_PROG_LIBTOOL #AM_PROG_LIBTOOL -# check for C++ compiler compatibility -AC_CACHE_CHECK( - [if C++ compiler is compatible], - [cc_compat], - [AC_LANG_PUSH(C++) - AC_TRY_LINK( - [#include <cctype> - #include <iostream>], - [if (std::isspace(' ') || std::isdigit(' ')) - std::cout << std::left << std::right << "Hello";], - [cc_compat=true], - [cc_compat=false]) - AC_LANG_POP]) - -if [test x$cc_compat = xfalse ]; then - AC_MSG_FAILURE("System's C++ compiler is not compatible (need to use gcc3?)") -fi - # check for gmp AC_CACHE_CHECK( [if libgmp is available], |