Re: [Plib-users] (cory vs. pui) The attack of setValuator
Brought to you by:
sjbaker
From: cory b. <co...@gm...> - 2008-06-17 20:03:09
|
Jan, I haven't made any progress on this issue. I added a post to the ubuntu forums, but still don't have a reply. I did look in config.log and found the following: configure:6841: checking for glNewList in -lGL configure:6876: gcc -o conftest -g -O2 conftest.c -lGL -lSM -lICE -lXi -lXmu -lXext -lX11 -lm >&5 /usr/bin/ld: cannot find -lXmu collect2: ld returned 1 exit status and: configure:6929: checking for glNewList in -lMesaGL configure:6964: gcc -o conftest -g -O2 conftest.c -lMesaGL -lSM -lICE -lXi -lXmu -lXext -lX11 -lm >&5 /usr/bin/ld: cannot find -lMesaGL collect2: ld returned 1 exit status In my searches, I found some suggestion that I should check for libGl.so I found it in /usr/lib/ libGl.so is a link to libGl.so.1 which is a link to libGl.so.1.2 I also found a suggestion that I should try using: ./configure --with-lGL=/usr but that failed, so I also tried: ./configure --with-lGL=/usr/ ./configure --with-lGL=/usr/lib ./configure --with-lGL=/usr/lib/ all fail. I have no idea what else to do. On Tue, Jun 17, 2008 at 3:34 PM, Jan Reucker <slo...@gm...> wrote: > Am Sun, 15 Jun 2008 20:52:41 +0100 schrieb Stuart McDonald <stu...@bl...>: > >> The configure script should generate a log (config.log?) that shows the >> small program is it trying to compile. > > That's right, there should be a config.log and you'll find the > description of the error towards the end of the file. > >> It could also be the library is named something else, (say) >> libOSMesaGL.a or something. No idea how to properly fix something like >> that, but as a last resort you could hand edit the configure.ac (might >> be configure.in) and change the name. > > I usually create a symlink with the required name that points > to the real lib, e.g. > > ln -s /usr/lib/libFancyGL.so.1.2.3 /usr/lib/libGL.so > > A quick look at /usr/lib shows that this is what Ubuntu does > by default: > > lrwxrwxrwx 1 root root 17 2008-05-31 09:51 /usr/lib/libGL.so -> libGL.so.96.43.01 > > On my PC /usr/lib/libGL.so is only a symlink pointing to the libGL > provided by NVIDIA. > > But take a look at config.log first to make sure that this is the > problem. > > Kind regards, > Jan R. > > -- > Jan Reucker > email: jan dot reucker at web dot de > web: http://www.reucker-online.de > > ------------------------------------------------------------------------- > Check out the new SourceForge.net Marketplace. > It's the best place to buy or sell services for > just about anything Open Source. > http://sourceforge.net/services/buy/index.php > _______________________________________________ > plib-users mailing list > pli...@li... > https://lists.sourceforge.net/lists/listinfo/plib-users > |