From: Dirk R. <re...@ig...> - 2001-03-20 15:53:11
|
On Mar 20, 2:04am, Sven M. Hallberg wrote: > > Dirk: Can you check out Mesa 3.5 and see if it compiles on your Irix machine > now? > >-- End of excerpt from Sven M. Hallberg Getting closer. After checking out the current CVS I called bootstrap, configure and gmake all. The following problems came up: 1) src/array_cache/libMesaAC_la_SOURCES was missing, I recreated it as shown in the attachment, I hope that's right. At least it compiles. ;) 2) cc-1101 cc: ERROR File = ss_tritmp.h, Line = 159 "quad" has already been declared in the current scope. static void TAG(quad)( GLcontext *ctx, GLuint v0, ^ quad is already defined in bsd_types.h. Renaming quad to quadfunc in ss_tritmp.h fixed that. 3) texutil_tmp.h : __FUNCTION__ undefined Irix CC doesn't define __FUNCTION__. I just killed it by #defining it to nothing, but that's not a solution. 4) si-glu still used the old ,-MD, for dependencies. Adding the rules for %.o: %.cc and %.lo: %.cc to common_rules.make fixed that (see attachment). Doing that it apparently compiled, but didn't create the GLUT lib. gmake all in src-glut does nothing. No idea whats' wrong here?!? Thus I'm not sure what else it didn't make and I can't run tests or demos. I need a hint what to do now... Thanks Dirk -- -- -- Dirk Reiners re...@ig..., Dir...@gm... -- OpenSG Forum http://www.opensg.org -- Rundeturmstrasse 6 http://www.igd.fhg.de/~reiners -- D-64283 Darmstadt All standard disclaimers apply. -- Truth is stranger than fiction because fiction has to make sense. |