diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-07-19 16:28:20 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:38:14 -0500 |
commit | 0e2f7c0ea4388f35d09dcbfbbdf7a520ad39b51b (patch) | |
tree | 129263ddd0b89e6139cb424fd381fbb63efdea1a | |
parent | 8cfb182bdbfb1c820c472f787ff7888a9d79c2a5 (diff) | |
download | samba-0e2f7c0ea4388f35d09dcbfbbdf7a520ad39b51b.tar.gz samba-0e2f7c0ea4388f35d09dcbfbbdf7a520ad39b51b.tar.bz2 samba-0e2f7c0ea4388f35d09dcbfbbdf7a520ad39b51b.zip |
r17138: In preparation for the cluster merge, add an empty configure option :-)
Volker
(This used to be commit 906720649b4a6c9de9fb6e248e573d3e8fd00ead)
-rw-r--r-- | source3/configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/source3/configure.in b/source3/configure.in index bb7f165db2..70d60e06d9 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -4730,6 +4730,20 @@ if test "x$with_spinlocks" = "xyes"; then fi ################################################# +# check for cluster extensions + +AC_MSG_CHECKING(whether to include cluster support) +AC_ARG_WITH(cluster-support, +[ --with-cluster-support Enable cluster extensions (default=no)]) +if test "x$with_cluster_support" = "xyes"; then + AC_DEFINE(CLUSTER_SUPPORT,1,[Whether to enable cluster extensions]) + AC_MSG_RESULT(yes) +else + AC_MSG_RESULT(no) +fi + + +################################################# # check for ACL support AC_MSG_CHECKING(whether to support ACLs) |