]> git.ipfire.org Git - people/ms/strongswan.git/blob - autogen.sh
Invoke autoheader after libtool/aclocal to work on up-to-date data
[people/ms/strongswan.git] / autogen.sh
1 #!/bin/sh
2
3 LIBTOOLIZE=`which glibtoolize 2>/dev/null`
4 case "$LIBTOOLIZE" in
5 /* ) ;;
6 * ) LIBTOOLIZE=`which libtoolize 2>/dev/null`
7 case "$LIBTOOLIZE" in
8 /* ) ;;
9 * ) LIBTOOLIZE=libtoolize
10 ;;
11 esac
12 ;;
13 esac
14
15 $LIBTOOLIZE --force &&
16 aclocal &&
17 autoheader &&
18 automake -a &&
19 autoconf
20