diff options
author | Nikos Mavrogiannopoulos | 2007-11-28 18:29:21 +0000 |
---|---|---|
committer | Nokis Mavrogiannopoulos | 2007-11-28 18:29:21 +0000 |
commit | 7bebb42365c3bf0bee9e4618dc45bd8ca5d164a1 (patch) | |
tree | a5d6d38a76da9f3a36205294c5bfb8e0b3f0d96d /autogen.sh | |
parent | 8e33f2d4c149fe8b6d2f1f3bdb06c52da53952f1 (diff) |
upgraded to 0.4.0
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 30 |
1 files changed, 23 insertions, 7 deletions
@@ -1,9 +1,25 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | m4/buildconf.py \ | ||
3 | --libtoolize \ | ||
4 | --aclocal \ | ||
5 | --automake \ | ||
6 | --autoconf \ | ||
7 | --autoheader | ||
8 | 2 | ||
9 | rm -rf autom4te.cache | 3 | if [ -z $ACLOCAL ]; then |
4 | ACLOCAL=aclocal | ||
5 | fi | ||
6 | if [ -z $AUTOCONF ]; then | ||
7 | AUTOCONF=autoconf | ||
8 | fi | ||
9 | if [ -z $AUTOHEADER ]; then | ||
10 | AUTOHEADER=autoheader | ||
11 | fi | ||
12 | if [ -z $AUTORECONF ]; then | ||
13 | AUTORECONF=autoreconf | ||
14 | fi | ||
15 | |||
16 | #rm -rf autom4te.cache | ||
17 | $AUTORECONF -f -i | ||
18 | #touch stamp-h.in | ||
19 | |||
20 | for x in providers/*; do | ||
21 | if [ -e $x/autogen.sh ]; then | ||
22 | echo Generating Config files in $x | ||
23 | (cd $x; ./autogen.sh $*) | ||
24 | fi | ||
25 | done | ||