#! /bin/sh# Run this script to build samba from CVS.ifwhich autoconf > /dev/null
then:elseecho"$0: need autoconf 2.53 or later to build samba from CVS">&2exit1fiecho"$0: running autoheader"
autoheader ||exit1echo"$0: running autoconf"
autoconf ||exit1echo"Now run ./configure and then make."exit0