Re: [Plib-devel] Updated configure script in CVS
Brought to you by:
sjbaker
From: Sebastian U. <ud...@ha...> - 2002-08-30 20:50:19
|
On Fri, 30 Aug 2002, w_...@rz... (Wolfram Kuss) wrote: > Date: Fri, 30 Aug 2002 22:16:52 +0200 > To: pli...@li... > From: w_...@rz... (Wolfram Kuss) > Reply-To: pli...@li... > Subject: Re: [Plib-devel] Updated configure script in CVS [...] > At work, I have wrong options for cvs and it works and here at home I > have correct options and it says: > > "cvs log: warning: unrecognized response > `wol...@cv...'s password: > ' from cvs server" > > CVS itself works, I can connect to my own cvs server. Well, that's not good at all - but for the meanwhile, I uploaded the zipped CVS snapshot from 22:30 o'clock German time for you here: http://www.ude.handshake.de/plib-3008-2230.zip By the way; Does the anonymous (pserver) access method work for you ? cvs -d:pserver:ano...@cv...:/cvsroot/plib login [Press return when prompted for password] cvs -z3 -d:pserver:ano...@cv...:/cvsroot/plib co plib > Anyway, the error message was a missing ";" in gl.h. > My gut feeling is this will cost lots of time to re-sort include > files. Probably the clincher is the order in which windows.h is > included. Then, the solution should be rather easy: In fnt.h, pui.h, ssg.h and ssgAux.h, try to move the block: #ifdef __APPLE__ # include <OpenGL/gl.h> # include <OpenGL/glu.h> #else # include <GL/gl.h> # include <GL/glu.h> #endif *after* the preprocesser statements that include the other PLIB header files. This way, ul.h and thus all the compatibility stuff has already been included when the OpenGL headers are processed. Please tell me if that helped. - Sebastian |