summaryrefslogtreecommitdiff
path: root/examples/VFS/autogen.sh
diff options
context:
space:
mode:
authorAlexander Bokovoy <ab@samba.org>2003-06-04 13:13:41 +0000
committerAlexander Bokovoy <ab@samba.org>2003-06-04 13:13:41 +0000
commitbee3d8f410703a4eabdfe1d40b05425637ee14df (patch)
tree7fda531cf59348edce04d1273e1e5047bfe09cf1 /examples/VFS/autogen.sh
parent8d64a1c69aeeca548bde97419c0a01408fcabca5 (diff)
downloadsamba-bee3d8f410703a4eabdfe1d40b05425637ee14df.tar.gz
samba-bee3d8f410703a4eabdfe1d40b05425637ee14df.tar.bz2
samba-bee3d8f410703a4eabdfe1d40b05425637ee14df.zip
Move VFS example skel.c to two different examples: one for opaque operations and one for transparent. Also add configure support for compiling third-party modules. Patch from Stefan Metzmacher <metze@metzemix.de>
(This used to be commit fcdf215753630d4173e50b7d93d6bc8ba254a5ff)
Diffstat (limited to 'examples/VFS/autogen.sh')
-rwxr-xr-xexamples/VFS/autogen.sh60
1 files changed, 60 insertions, 0 deletions
diff --git a/examples/VFS/autogen.sh b/examples/VFS/autogen.sh
new file mode 100755
index 0000000000..fcae16ec5c
--- /dev/null
+++ b/examples/VFS/autogen.sh
@@ -0,0 +1,60 @@
+#!/bin/sh
+
+# Run this script to build samba from CVS.
+
+## insert all possible names (only works with
+## autoconf 2.x
+#TESTAUTOHEADER="autoheader autoheader-2.53"
+TESTAUTOCONF="autoconf autoconf-2.53"
+
+#AUTOHEADERFOUND="0"
+AUTOCONFFOUND="0"
+
+
+##
+## Look for autoheader
+##
+#for i in $TESTAUTOHEADER; do
+# if which $i > /dev/null 2>&1; then
+# if [ `$i --version | head -n 1 | cut -d. -f 2` -ge 53 ]; then
+# AUTOHEADER=$i
+# AUTOHEADERFOUND="1"
+# break
+# fi
+# fi
+#done
+
+##
+## Look for autoconf
+##
+
+for i in $TESTAUTOCONF; do
+ if which $i > /dev/null 2>&1; then
+ if [ `$i --version | head -n 1 | cut -d. -f 2` -ge 53 ]; then
+ AUTOCONF=$i
+ AUTOCONFFOUND="1"
+ break
+ fi
+ fi
+done
+
+
+##
+## do we have it?
+##
+if [ "$AUTOCONFFOUND" = "0" -o "$AUTOHEADERFOUND" = "0" ]; then
+ 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
+