From: Benjamin S. <sch...@pr...> - 2003-07-30 00:10:05
|
Haven't tried it myself but my guess would be MSVC++ is finally attempting to be a compliant C++ compiler. Inclusion of standard header files with .h extension is deprecated. Try replacing the line that #include 'fstream.h' with #include <fstream> and see if that doesn't make a difference. There are likely to be other such examples I'm sure. Good luck, Ben Scherrey 7/29/2003 3:36:01 AM, "Iwan Birrer" <ib...@co...> wrote: >Is there anybody who succesfully compiled the source with the win32 >makefile? I tried to compile it with the following command: > >nmake Makefile.occ > >but without succes. The error message was the following: >c:\opencxx\src\buffer.h(39) : fatal error C1083: Cannot open include file: >'fstream.h': No such file or directory |