get autogen.sh to detect the autotools correctly on FreeBSD.
[monky] / autogen.sh
1 #!/bin/sh
2 # $Id$
3
4 if [ `uname -s` = FreeBSD ]; then
5         aclocal19
6         libtoolize15 --force
7         autoheader259
8         automake19 -a
9         autoconf259
10 else
11         aclocal-1.9
12         libtoolize --force
13         autoheader-2.59
14         automake-1.9 -a
15         autoconf-2.59
16 fi