]> code.citadel.org Git - citadel.git/blob - citadel/bootstrap
* support autoconf 2.53
[citadel.git] / citadel / bootstrap
1 #!/bin/sh
2 #
3 # run me after checking Citadel out of CVS.
4 #
5 # $Id$
6 #
7 echo ... running aclocal ...
8 aclocal
9 echo ... running libtoolize ...
10 libtoolize -c --force
11 echo ... running autoconf ...
12 autoconf
13 echo ... running autoheader ...
14 autoheader
15
16 echo
17 echo This script has been tested with autoconf 2.53, libtool 1.4d, and
18 echo automake 1.5. Other versions may work, but I recommend the latest
19 echo compatible versions of these.
20 echo
21 echo libtool 1.4.2 is not sufficient to build portable configure scripts;
22 echo at least version 1.4d from alpha.gnu.org is needed.
23 echo
24 echo Also note that autoconf, automake, and libtool should all be configured
25 echo with the same prefix.
26 echo