Enable HAVE_DECL_ISTREAMBUF_ITERATOR checking as istreambuf_iterator exists and work correctly with MSVC2005

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21844 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Abdelrazak Younes 2007-11-28 09:53:45 +00:00
parent f07105d0e5
commit 34f0cc2ae1

View File

@ -105,14 +105,14 @@ check_type_size(wint_t HAVE_WINT_T)
# "
#HAVE_STD_COUNT)
#check_cxx_source_compiles(
# "
# #include <streambuf>
# #include <istream>
# typedef std::istreambuf_iterator<char> type;
# int main(){return 0;}
# "
#HAVE_DECL_ISTREAMBUF_ITERATOR)
check_cxx_source_compiles(
"
#include <streambuf>
#include <istream>
typedef std::istreambuf_iterator<char> type;
int main(){return 0;}
"
HAVE_DECL_ISTREAMBUF_ITERATOR)
#check_cxx_source_compiles(
# "