2 # Taken from lighthttpd server (BSD). Thanks Jan!
3 # Run this to generate all the initial makefiles, etc.
5 die
() { echo "$@"; exit 1; }
7 # --force means overwrite ltmain.sh script if it already exists
8 LIBTOOLIZE_FLAGS
=" --automake --copy --force"
9 # --add-missing instructs automake to install missing auxiliary files
10 # and --force to overwrite them if they already exist
11 AUTOMAKE_FLAGS
="--add-missing --copy --force"
18 echo "$ARGV0: running \`$@' $ARGS"
22 # Try to locate a program by using which, and verify that the file is an
27 file=`which $f 2>/dev/null | grep -v '^no '`
28 if test -n "$file" -a -x "$file"; then
38 # Try to detect the supported binaries if the user didn't
39 # override that by pushing the environment variable
40 if test x
$LIBTOOLIZE = x
; then
41 LIBTOOLIZE
=`locate_binary glibtoolize libtoolize-1.5 libtoolize`
42 if test x
$LIBTOOLIZE = x
; then
43 die
"Did not find a supported libtoolize"
47 if test x
$ACLOCAL = x
; then
48 ACLOCAL
=`locate_binary aclocal-1.10 aclocal-1.9 aclocal19 aclocal`
49 if test x
$ACLOCAL = x
; then
50 die
"Did not find a supported aclocal"
54 if test x
$AUTOMAKE = x
; then
55 AUTOMAKE
=`locate_binary automake-1.10 automake-1.9 automake19 automake`
56 if test x
$AUTOMAKE = x
; then
57 die
"Did not find a supported automake"
61 if test x
$AUTOCONF = x
; then
62 AUTOCONF
=`locate_binary autoconf-2.59 autoconf259 autoconf`
63 if test x
$AUTOCONF = x
; then
64 die
"Did not find a supported autoconf"
68 if test x
$AUTOHEADER = x
; then
69 AUTOHEADER
=`locate_binary autoheader-2.59 autoheader259 autoheader`
70 if test x
$AUTOHEADER = x
; then
71 die
"Did not find a supported autoheader"
75 run
$LIBTOOLIZE $LIBTOOLIZE_FLAGS || die
"Can't execute libtoolize"
76 run
$ACLOCAL $ACLOCAL_FLAGS || die
"Can't execute aclocal"
77 run
$AUTOHEADER || die
"Can't execute autoheader"
78 run
$AUTOMAKE $AUTOMAKE_FLAGS || die
"Can't execute automake"
79 run
$AUTOCONF || die
"Can't execute autoconf"
82 echo "Configured with the following tools:"
83 echo " * `$LIBTOOLIZE --version | head -1`"
84 echo " * `$ACLOCAL --version | head -1`"
85 echo " * `$AUTOHEADER --version | head -1`"
86 echo " * `$AUTOMAKE --version | head -1`"
87 echo " * `$AUTOCONF --version | head -1`"