forked from collectd/collectd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sh
executable file
·59 lines (51 loc) · 1.24 KB
/
build.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
53
54
55
56
57
58
59
#! /bin/sh
GLOBAL_ERROR_INDICATOR=0
check_for_application ()
{
for PROG in "$@"
do
which "$PROG" >/dev/null 2>&1
if test $? -ne 0; then
cat >&2 <<EOF
WARNING: \`$PROG' not found!
Please make sure that \`$PROG' is installed and is in one of the
directories listed in the PATH environment variable.
EOF
GLOBAL_ERROR_INDICATOR=1
fi
done
}
check_for_application lex yacc autoheader aclocal automake autoconf
# Actually we don't need the pkg-config executable, but we need the M4 macros.
# We check for `pkg-config' here and hope that M4 macros will then be
# available, too.
check_for_application pkg-config
libtoolize=""
libtoolize --version >/dev/null 2>/dev/null
if test $? -eq 0
then
libtoolize=libtoolize
else
glibtoolize --version >/dev/null 2>/dev/null
if test $? -eq 0
then
libtoolize=glibtoolize
else
cat >&2 <<EOF
WARNING: Neither \`libtoolize' nor \`glibtoolize' have been found!
Please make sure that one of them is installed and is in one of the
directories listed in the PATH environment variable.
EOF
GLOBAL_ERROR_INDICATOR=1
fi
fi
if test "$GLOBAL_ERROR_INDICATOR" != "0"
then
exit 1
fi
set -x
autoheader \
&& aclocal \
&& $libtoolize --ltdl --copy --force \
&& automake --add-missing --copy \
&& autoconf