3 # Run this script to build samba from CVS.
5 ## first try the default names
6 AUTOHEADER
="autoheader"
9 if which $AUTOCONF > /dev
/null
13 echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2
18 ## what version do we need?
20 if [ `$AUTOCONF --version | head -1 | cut -d. -f 2` -lt 53 ]; then
22 ## maybe it's installed under a different name (e.g. RedHat 7.3)
24 AUTOCONF
="autoconf-2.53"
25 AUTOHEADER
="autoheader-2.53"
29 echo "$0: running $AUTOHEADER"
32 echo "$0: running $AUTOCONF"
35 echo "Now run ./configure and then make."