Updated gnulib sources
[distributed.git] / bootstrap
blob127d62875c53f0d36d3dc19f0cc58f1497a4b033
1 #!/bin/sh
4 # bootstrap
6 # Copyright (C) 2008 Francesco Salvestrini
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with this program; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 ME=bootstrap
26 # Dump some useful informations
28 echo "$ME: Dumping build-tools information ..."
29 for tool in autoheader autoconf libtool libtoolize aclocal automake; do
30 TOOLVER=`$tool --version | head -1`
31 echo "$ME: $TOOLVER"
32 done
35 # Remove files left from the previous run
37 echo "$ME: Removing autotools related files and directories ..."
38 rm -f `find ./ -name "Makefile.in"` || exit 1
39 rm -f config.cache aclocal.m4 config.h.in configure || exit 1
40 rm -f config.guess config.sub ltmain.sh || exit 1
41 rm -rf autom4te.cache || exit 1
42 rm -rf `find ./ -name ".deps"` || exit 1
45 # Call gnulib
47 if test -n "`which gnulib-tool`" ; then
48 gnulib-tool --lgpl --no-changelog --aux-dir ./tools/autotools --m4-base ./tools/autotools/m4 --source-base=./src/gnulib --macro-prefix GNULIB --no-vc-files --import crypto/md5 crypto/sha1 getopt || exit 1
52 # configure.ac
54 echo "$ME: Building configure.ac from configure.ac.in"
55 rm -f configure.ac
56 VERSION=`git tag -l | sort -s -t '.' -k 1,1n -k 2,2n -k 3,3n | tail -n 1`
57 cat configure.ac.in | sed -e 's,[@]VERSION[@],'$VERSION',' > configure.ac || \
58 { rm -f configure.ac ; exit 1 ; }
59 chmod a-w configure.ac
62 # autoreconf
64 echo "$ME: Handling autotools bootstrap ..."
66 echo "$ME: Running autoreconf ..."
67 aclocal --force --install -I ./tools/autotools/m4 && \
68 autoreconf --verbose --force --install -Wall || {
69 exit 1
72 exit 0