]>
The Tcpdump Group git mirrors - tcpdump/blob - autogen.sh
c84a6b5c5dd256080187e14cd2a1d48dc49296b9
3 : "${AUTORECONF:=autoreconf}"
5 AUTORECONFVERSION
=`$AUTORECONF --version 2>&1 | grep "^autoreconf" | sed 's/.*) *//'`
7 maj
=`echo "$AUTORECONFVERSION" | cut -d. -f1`
8 min
=`echo "$AUTORECONFVERSION" | cut -d. -f2`
9 # The minimum required version of autoconf is currently 2.69.
10 if [ "$maj" = "" ] ||
[ "$min" = "" ] || \
11 [ "$maj" -lt 2 ] ||
{ [ "$maj" -eq 2 ] && [ "$min" -lt 69 ]; }; then
13 Please install the 'autoconf' package version 2.69 or later.
14 If version 2.69 or later is already installed and there is no
15 autoconf default, it may be necessary to set the AUTORECONF
16 environment variable to enable the one to use, like:
17 AUTORECONF=autoreconf-2.69 ./autogen.sh
19 AUTORECONF=autoreconf-2.71 ./autogen.sh
24 echo "$AUTORECONF identification: $AUTORECONFVERSION"