-
Notifications
You must be signed in to change notification settings - Fork 701
/
autogen.sh
executable file
·52 lines (36 loc) · 1.1 KB
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#! /usr/bin/env bash
srcdir=`dirname $0`
test -n "$srcdir" || srcdir=.
cd "$srcdir"
function failed {
cat << EOF 1>&2
Result: $1 failed
Please try running the commands from autogen.sh manually, and fix errors.
EOF
exit 1
}
if test `uname -s` = Linux -o `uname -s` = FreeBSD; then
libtoolize || failed "libtool"
elif test `uname -s` = Darwin; then
libtoolize || glibtoolize || failed "Can't find libtoolize or glibtoolize. Use lode or install it yourself."
fi
aclocal || failed "aclocal"
autoheader || failed "autoheader"
automake --add-missing || failed "automake"
autoreconf || failed "autoreconf"
scripts/refresh-git-hooks || failed "refresh-git-hooks"
if [ $# -gt 0 ]; then
# If we got parameters, we can execute configure directly.
echo -n "Result: All went OK, running $srcdir/configure "
for arg in "$@"
do
echo -n "'${arg}' "
done
echo "now."
$srcdir/configure "$@" || failed "configure"
exit 0
fi
cat << EOF
Result: All went OK, please run $srcdir/configure (with the appropriate parameters) now.
EOF
# vim:set shiftwidth=4 softtabstop=4 expandtab: