use cxxflags in test builds

This commit is contained in:
Bill Hoffman 2001-05-22 13:40:49 -04:00
parent beaa7dc1c8
commit b5b4c0eb5c
2 changed files with 5 additions and 7 deletions

7
configure vendored
View File

@ -1035,7 +1035,7 @@ echo "configure:1034: checking ansi standard C++ stream headers " >&5
cat > conftest.cc <<!
#include <iostream>
!
if test -z "`${CXX} -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
cat >> confdefs.h <<\EOF
@ -1048,15 +1048,14 @@ fi
# check to see if stl is in the std namespace
if test $ac_cv_prog_gxx = no; then
echo "******"
echo $ac_n "checking ansi standard namespace support ""... $ac_c" 1>&6
echo "configure:1054: checking ansi standard namespace support " >&5
echo "configure:1053: checking ansi standard namespace support " >&5
rm -rf conftest.*
cat > conftest.cc <<!
#include <list>
void foo() { std::list<int> l; }
!
if test -z "`${CXX} -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
cat >> confdefs.h <<\EOF

View File

@ -68,7 +68,7 @@ if test $ac_cv_prog_gxx = no; then
cat > conftest.cc <<!
#include <iostream>
!
if test -z "`${CXX} -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
AC_DEFINE(CMAKE_NO_ANSI_STREAM_HEADERS)
@ -78,14 +78,13 @@ fi
# check to see if stl is in the std namespace
if test $ac_cv_prog_gxx = no; then
echo "******"
AC_MSG_CHECKING( ansi standard namespace support )
rm -rf conftest.*
cat > conftest.cc <<!
#include <list>
void foo() { std::list<int> l; }
!
if test -z "`${CXX} -c conftest.cc 2>&1`"; then
if test -z "`${CXX} $CXXFLAGS $CPPFLAGS -c conftest.cc 2>&1`"; then
echo "$ac_t""yes" 1>&6
else
AC_DEFINE(CMAKE_NO_STD_NAMESPACE)