From: Braden M. <br...@en...> - 2008-08-20 00:46:08
|
On Tue, 2008-08-19 at 17:01 -0700, Frank Van Geirt wrote: > > > Braden McDaniel wrote: > > > > Your path (as given in your previous e-mail) makes this look like you're > > building the trunk rather than 0.17.8. (trunk might report its version > > as 0.17.8; but that's just because I haven't given it some fake number.) > > > > Yes, I am building the trunk; not the 0.17.8 package, sorry for the > inconvenience. That's my purpose. I want to follow the latest changes as I > want to get familiar with the code. I know about the compiled binaries for > Fedora. I have them on my Fedora 8 box (a 6 year old pc); on that one I > don't want to compile them as I don't want any interference. > > > > > Are you using the stock Fedora 9 autoconf/automake/libtool? What options > > did you pass to configure? > > > > I am using the stock Fedora 9 autoconf/automake/libtool. In fact I installed > all the needed packages via the Fedora repositories. > > I recorded all my actions as I want to create a small script to automate the > building process. It looks like this for the time being... > > #!/bin/sh > > # gtkglext > cd trunk/lib/gtkglext > touch gtk-doc.make > aclocal > autoconf > autoheader > automake -a > cd ../../.. > > # mozilla-plugin > cd trunk/mozilla-plugin > aclocal -I ../m4 > autoconf > automake -a > make distclean > cd ../.. > > # OpenVRML > cd trunk > aclocal -I m4 > autoconf > autoheader > touch ltmain.sh > automake -a > ./configure BOOST_LIB_SUFFIX=-mt > make Is there a reason you're not using OpenVRML's bootstrap script and autoreconf? You should hardly ever be calling aclocal, etc., yourself these days. Those touch'es look potentially dangerous, too. -- Braden McDaniel e-mail: <br...@en...> <http://endoframe.com> Jabber: <br...@ja...> |