Removed HAVE_SSTREAM for redhat 2.96

This commit is contained in:
maartenkeijzer 2003-04-20 12:57:59 +00:00
commit af5fee9478

View file

@ -10,7 +10,13 @@ ac_cv_cxx_have_sstream,
AC_TRY_COMPILE([#include <sstream>
#ifdef HAVE_NAMESPACES
using namespace std;
#endif],[stringstream message; message << "Hello"; return 0;],
#endif
#if __GNUC__ == 2
#if __GNUC_MINOR__ == 96
#error("force_error_for_2_96")
#endif
#endif],[stringstream message; message << "Hello"; return 0;
],
ac_cv_cxx_have_sstream=yes, ac_cv_cxx_have_sstream=no)
AC_LANG_RESTORE
])