From: Marcelo E. M. <mar...@bi...> - 2001-06-19 19:58:31
|
How nice, I was about to report this :-) >> Brian Paul <br...@va...> writes: > I currently have autoconf 2.50, automake 1.4-p2 and libtool 1.4 > installed. you need to copy your system's libtool.m4 to m4/libtool.m4 (mine is in /usr/share/aclocal/libtool.m4, I don't know if that's "standard" location) > Apparently, the 'libtoolize' program should be run during configure > in order to install 'libtool'. But that's not happening. Nope, libtoolize is missing on the bootstrap script. Something like this: run_cmd cat m4/*.m4 > acinclude.m4 run_cmd libtoolize --automake --copy --force run_cmd aclocal > cd into your Mesa CVS directory > cvs up // get latest sources > ln -s Mesa Mesa-3.5 > cd Mesa-3.5 > cp Makefile.X11 Makefile [insert ./bootstrap here] > make lib_tar demo_tar > > // you should now have MesaLib-3.5.tar.gz and MesaDemos-3.5.tar.gz > > cp Mesa*3.5.tar.gz /tmp > cd /tmp > tar zxf MesaLib-3.5.tar.gz > tar zxf MesaDemos-3.5.tar.gz > cd Mesa-3.5 > ./configure > make > > Compilation will fail because 'libtool' isn't found. Yes. The one I'm trying to figure out is why autoheader is run after ./configure. That shouldn't happen. The other problem is that matypes.h is not being generated. -- Marcelo |