1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.

This commit is contained in:
cvs2svn Import User 0001-01-01 00:00:00 +00:00
commit 0dfbda0048

19
source/autogen.sh Executable file
View File

@ -0,0 +1,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