Re: [Plib-users] Example config problem
Brought to you by:
sjbaker
From: Norman V. <nh...@ca...> - 2002-11-20 00:05:42
|
C. Hotchkiss writes: > > > > > > All I can recommend (again) is that you apply the patch I created for you > > over a *clean* plib_examples-1.6.1 tree and try to run ./configure > > afterwards. Doing so should at least allow you to compile the example > > programs for now, independently of your autoconf problem. > > > > Did that and got an interesting, but different result. Patching goes > smoothly. But, when I then run ./configure, it gets to: > ... > checking for ulInit in -lplibul... no > configure: error: there seems to be a problem with the PLIB libraries. > > I downloaded the stable version (1.6.0) and it builds and installs > without a hint of trouble using the steps specified in the installation > instructions. Charlie Did you upgrade your compiler ? If so you are using gcc 3.2 which is incompatable with gcc 2.95 libraries. Two ways around this 1) remake PLIB with the new compiler % cd PLIB % make clean % make % make install and try again 2) use this configure command % cd PLIB_EXAMPLES % CC=c++-2 CXX=c++-2 ./configure % make clean % make HTH < I would do (1) and move up to gcc 3.2 > Norman |