]> git.ipfire.org Git - people/ms/strongswan.git/blob - autogen.sh
libtoolize is called glibtoolize on Mac OS X
[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 automake -a &&
18 autoconf
19