]> git.ipfire.org Git - people/ms/strongswan.git/blob - autogen.sh
Use and install a config.h AC_CONFIG_HEADER that contains all AC_DEFINE results
[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 autoheader &&
16 $LIBTOOLIZE --force &&
17 aclocal &&
18 automake -a &&
19 autoconf
20