-
Notifications
You must be signed in to change notification settings - Fork 0
/
autogen.sh
executable file
·57 lines (51 loc) · 1.91 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
53
54
55
56
57
#!/bin/bash
# We change dir since the later utilities assume to work in the project dir
cd ${0%*/*}
# make sure autoconf is up-to-date
ac_ver=`autoconf --version | head -n 1 | awk '{print $NF}'`
ac_maj=`echo $ac_ver|sed 's/\..*//'`
ac_min=`echo $ac_ver|sed 's/.*\.//'`
if [[ $ac_maj -lt 2 ]]; then
echo Min autoconf version is 2.57
exit 1
elif [[ $ac_maj -eq 2 && $ac_min -lt 57 ]]; then
echo Min autoconf version is 2.57
exit 1
fi
# make sure automake is up-to-date
am_ver=`automake --version | head -n 1 | awk '{print $NF}'`
am_maj=`echo $am_ver|sed 's/\..*//'`
am_min=`echo $am_ver|sed 's/[^\.]*\.\([^\.]*\)\.*.*/\1/'`
am_sub=`echo $am_ver|sed 's/[^\.]*\.[^\.]*\.*//'`
if [[ $am_maj -lt 1 ]]; then
echo Min automake version is 1.6.3
exit 1
elif [[ $am_maj -eq 1 && $am_min -lt 6 ]]; then
echo "automake version is too old:$am_maj.$am_min.$am_sub < required 1.6.3"
exit 1
elif [[ $am_maj -eq 1 && $am_min -eq 6 && $am_sub -lt 3 ]]; then
echo "automake version is too old:$am_maj.$am_min.$am_sub < required 1.6.3"
exit 1
fi
# make sure libtool is up-to-date
lt_ver=`libtool --version | head -n 1 | awk '{print $4}'`
lt_maj=`echo $lt_ver|sed 's/\..*//'`
lt_min=`echo $lt_ver|sed 's/[^\.]*\.\([^\.]*\)\.*.*/\1/'`
lt_sub=`echo $lt_ver|sed 's/[^\.]*\.[^\.]*\.*//'`
if [[ $lt_maj -lt 1 ]]; then
echo Min libtool version is 1.4.2
exit 1
elif [[ $lt_maj -eq 1 && $lt_min -lt 4 ]]; then
echo "libtool version is too old:$lt_maj.$lt_min.$lt_sub < required 1.4.2"
exit 1
elif [[ $lt_maj -eq 1 && $lt_min -eq 4 && $lt_sub -lt 2 ]]; then
echo "libtool version is too old:$lt_maj.$lt_min.$lt_sub < required 1.4.2"
exit 1
fi
# cleanup
find . \( -name Makefile.in -o -name aclocal.m4 -o -name autom4te.cache -o -name configure -o -name aclocal.m4 \) -exec \rm -rf {} \; -prune
aclocal -I config && \
libtoolize --force --copy && \
autoheader && \
automake --foreign --add-missing --copy && \
autoconf