summaryrefslogtreecommitdiff
path: root/source3/autogen.sh
blob: 28d1608287ec48330af6183e2324f714672debdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#! /bin/sh

# Run this script to build samba from CVS.

if which autoconf > /dev/null
then
    :
else
    echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2
    exit 1
fi

echo "$0: running autoheader"
autoheader || exit 1

echo "$0: running autoconf"
autoconf || exit 1
echo "Now run ./configure and then make."
exit 0