From octave-maintainers-request at bevo dot che dot wisc dot edu Thu May 16 15:10:14 2002 Subject: other trouble From: "John W. Eaton" To: "Lippert, Ross A." Cc: octave-maintainers mailing list Date: Thu, 16 May 2002 15:10:10 -0500 On 16-May-2002, Lippert, Ross A. wrote: | There were a couple places where std:: needed to be put in, like | std::ostream in symtab.h and | std::string in error.cc, OK, I think I have fixed these (just one in each file, right?). | but this one is baffling still. It looks like the | string char_traits is not an integer | but is assumed to be an integer in oct-fstrm.cc | oct-fstrm.cc: In constructor `octave_fstream::octave_fstream(const | std::string&, std::_Ios_Openmode, oct_mach_info::float_format)': | oct-fstrm.cc:54: no matching function for call to `std::basic_fstream >::open(const char*, std::_Ios_Openmode&, int)' | /usr/local/gcc/3.0.2/include/g++-v3/bits/std_fstream.h:402: candidates are: | void std::basic_fstream<_CharT, _Traits>::open(const char*, | std::_Ios_Openmode = (std::ios_base::in | std::ios_base::out)) [with | _CharT | = char, _Traits = std::char_traits] Apparently configure did not define CXX_ISO_COMPLIANT_LIBRARY on your system, even though it probably should have if you are using g++ 3.0.x. Can you find out why it failed to define this macro, or at least send me the relevant parts of config.log? Thanks, jwe