Luke writes:
>
>
>
>
> On Wed, 23 Jun 1999, Greg Haerr wrote:
> > :
> > : Now it runs on ELKS, the screen flickers and it says Cannot open graphics.
> > : This is on a 386 and a pentium.
> >
> > You must be using ELKS version 0.77. Otherwise it won't work.
> > See mwin/server/drivers/scr_bios.c, function VGA_open(), and the ioctl for ELKS.
> >
>
> I am doing. With 0.0.76 the screen wouldn't even flicker, and I got an out
> of mem error.
>
>
> > : Then I tried Microwindows.
> >
> >
> > :
> > : With bcc and tgmath set to math, it gave the error:
> > : demo.c:204.4: error: bad expression
> > : demo.c:204.24: error: need scalar
> > : demo.c:205.4: error: bad expression
> > : demo.c:205.31: error: need scalar
> > :
> >
> > I'll check into this. Al - do you have comments?
> >
There are some more C++ style comments at this point. I did not remove them
as they were inside #if GRAPH3D, which must be set to 0 for the ELKS
version.
Change line 9 of this file so that it reads
#define GRAPH3D 0 /* 3d graphics demo*/
and it should compile okay.
Al