Add autogen.sh from distcc via mbp.
authorAndrew Bartlett <abartlet@samba.org>
Tue, 4 Feb 2003 10:54:01 +0000 (10:54 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 4 Feb 2003 10:54:01 +0000 (10:54 +0000)
This to allow us to remove configure from CVS.
(This used to be commit 9e8e352e102b75489b4540d701ce2c67c0f3cf31)

source3/autogen.sh [new file with mode: 0755]

diff --git a/source3/autogen.sh b/source3/autogen.sh
new file mode 100755 (executable)
index 0000000..28d1608
--- /dev/null
@@ -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