fix for sstream

This commit is contained in:
Bill Hoffman 2002-06-21 08:39:01 -04:00
parent 3fc7253184
commit a39a03c4d4
1 changed files with 9 additions and 11 deletions

View File

@ -113,19 +113,17 @@ if test $ac_cv_prog_gxx = no; then
fi fi
AC_SUBST(CMAKE_NO_ANSI_STREAM_HEADERS) AC_SUBST(CMAKE_NO_ANSI_STREAM_HEADERS)
# check non-g++ compilers to see if they have std::stringstream # check compilers to see if they have std::stringstream
if test $ac_cv_prog_gxx = no; then AC_MSG_CHECKING( for ansi standard C++ stringstream )
AC_MSG_CHECKING( for ansi standard C++ stringstream ) rm -rf conftest.*
rm -rf conftest.* cat > conftest.cc <<!
cat > conftest.cc <<!
#include <sstream> #include <sstream>
! !
if test -z "`${CXX} ${CMAKE_ANSI_CXXFLAGS} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then if test -z "`${CXX} ${CMAKE_ANSI_CXXFLAGS} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6 echo "$ac_t""yes" 1>&6
else else
CMAKE_NO_ANSI_STRING_STREAM="1" CMAKE_NO_ANSI_STRING_STREAM="1"
echo "$ac_t""no" 1>&6 echo "$ac_t""no" 1>&6
fi
fi fi
AC_SUBST(CMAKE_NO_ANSI_STRING_STREAM) AC_SUBST(CMAKE_NO_ANSI_STRING_STREAM)