Mike Fedyk wrote: > Bartek Kania wrote: >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> On Thu, 25 Jan 2007, Mike Fedyk wrote: >>> "You have the wrong version of libtoolize. The minimum required version >>> is 1.5.20 and the version installed is 1.5.6 (/usr/bin/libtoolize)" >>> I'm getting this while attempting to compile openpbx on a debian stable >>> system that is currently running asterisk 1.2. What will it take to >>> convert the scripts to use this older version of libtool? >> >> Unless something has changed then 1.5.6 should work just fine. >> I've been running opbx on sarge up until two or so months ago. >> Just change the scripts so they don't complain about the version and >> see if it works. > > The attached patch shows the changes I made to the bootstrap.sh file. > With this, bootstrap and configure works, but I'm getting a build error > (looks like an issue in the makefile). > > Any ideas on what to check? It looks like a close paren is missing, but > isn't that supposed to be handled by automake? > > The same svn revision numbers compile cleanly on ubuntu dapper. > > Any ideas? > > Mike >
Yes, it might help if I posted the error message... Making all in corelib make[1]: Entering directory `/home/mfedyk/src/openpbx/corelib' Makefile:1498: *** unterminated variable reference. Stop. make[1]: Leaving directory `/home/mfedyk/src/openpbx/corelib' make: *** [all-recursive] Error 1 ii automake1.9 1.9.5-1 ii make 3.80-9 ii autoconf 2.59a-3 ii m4 1.4.2-1 ii perl 5.8.4-8sarge5 This is from svn r1490 trunk on debian sarge. I'm getting the same error from r1510 also. > > > ------------------------------------------------------------------------ > > Index: bootstrap.sh > =================================================================== > --- bootstrap.sh (revision 2490) > +++ bootstrap.sh (working copy) > @@ -117,17 +117,16 @@ > > echo "" > echo "checking versions of required software ..." > +version_compare libtoolize 1 5 6 || exit 1 > if [ "x$UNAME" = "xFreeBSD" ]; then > -version_compare libtoolize 1 5 20 || exit 1 > -version_compare automake19 1 9 6 || exit 1 > +version_compare automake19 1 9 5 || exit 1 > version_compare autoconf259 2 59 || exit 1 > ACLOCAL=aclocal19 > AUTOHEADER=autoheader259 > AUTOMAKE=automake19 > AUTOCONF=autoconf259 > else > -version_compare libtoolize 1 5 20 || exit 1 > -version_compare automake 1 9 6 || exit 1 > +version_compare automake 1 9 5 || exit 1 > version_compare autoconf 2 59 || exit 1 > ACLOCAL=aclocal > AUTOHEADER=autoheader > > > ------------------------------------------------------------------------ > > _______________________________________________ > Openpbx-dev mailing list > [email protected] > http://lists.openpbx.org/mailman/listinfo/openpbx-dev _______________________________________________ Openpbx-dev mailing list [email protected] http://lists.openpbx.org/mailman/listinfo/openpbx-dev
