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


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

Reply via email to