> I am trying to compile LyX 1.1.5 on a Solaris 2.7 system, using g++ 2.95.2
> It seems like a whole load of include directives look like
> #include <iosfwd>
> 
> instead of
> 
> #include <iosfwd.h>

The first version is correct and should be available with gcc 2.95. 
If not, you can create your own iosfwd:

--------------- snip ----------------
// -*- C++ -*- I/O forward declaration header.
// This file is part of the GNU ANSI C++ Library.

#ifndef __IOSFWD__
#define __IOSFWD__
class ios;
class streambuf;
class istream;
class ostream;
class iostream;
class filebuf;
class ifstream;
class ofstream;
class fstream;
#endif
--------------- snip ----------------

Andre'

-- 
It'll take a long time to eat 63.000 peanuts.
André Pönitz ......................... [EMAIL PROTECTED]

Reply via email to