RE: [Plib-users] problem with plib compilation
Brought to you by:
sjbaker
|
From: Norman V. <nh...@ca...> - 2001-06-05 18:59:29
|
> >>there is 2 files >>Makefile.am and Makefile.in >>I going to edit Makefile.am and rename in Makefile > >I am pretty sure renaming is bad. > >For the others: Gael has the problem of the missing makefile in >ssgAux. Can someone using makefiles help him? >Looking through old posts, he has to add ssgAux to some file and then >probably to redo the config process? There are two problems with the 1.2 release 1) #include <float.h> is missing for some platforms in ul.h 2) at the end of in config.in AC_OUTPUT( \ Makefile \ src/Makefile \ src/include/Makefile \ src/js/Makefile \ src/util/Makefile \ src/pui/Makefile \ src/sg/Makefile \ src/sl/Makefile \ src/ssg/Makefile \ src/ssgAux/Makefile \ src/fnt/Makefile \ src/net/Makefile ) The ssgAux entry is missing so Gael needs to add the #include <float.h> to ul.h and replace the AC_OUTPUT( \ ... ) in plib / src / config.in with the above then do % cd plib % rm config.cache % aclocal % automake -a % autoconf % ./configure % make Cheers Norman |