Changeset 730

I like highly visible documentation. And I like it when things warn me
that I'm doing the wrong thing!

Committed by:  xrobau
Date:  Oct 29 2005 * 08:30 (over 3 years ago)

Affected files:

openpbx/branches/cypro/bootstrap.sh (unified diff)

r723r730
1 #!/bin/bash
1 #!/bin/bash
2
3 # Yes, I realise this is only for developers, but this should be
4 # documented and warned
5
6 # Check for required version and die if unhappy
7 libtoolize --version | grep 1.5.20 > /dev/null ||
8 (
9 echo You have the wrong, or missing version of libtool.
10 echo The required version is 1.5.20 and is available from:
11 echo http://www.gnu.org/software/libtool/
12 )
13
14 automake --version | grep 1.9.6 > /dev/null ||
15 (
16 echo You have the wrong, or missing version of automake.
17 echo The required version is 1.9.6 and is available from:
18 echo http://www.gnu.org/software/automake/
19 )
20
21 autoconf --version | grep 2.59 > /dev/null ||
22 (
23 echo You have the wrong, or missing version of autoconf.
24 echo The required version is 2.59 and is available from:
25 echo http://www.gnu.org/software/autoconf/
26 )
27
228 libtoolize --copy --force --ltdl
329 aclocal -I acmacros
430 autoheader --force