diff options
author | Michael Adam <obnox@samba.org> | 2011-03-31 16:12:02 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2011-03-31 20:00:48 +0200 |
commit | 4d105c9c30fea6d5d2a9d2e7939c54bb2f31910d (patch) | |
tree | 7a7f31f87652635d40b6d6365b7a891e4fdda59f /source3 | |
parent | 6a598b2ec0330019e677129156d6e27dbb18a225 (diff) | |
download | samba-4d105c9c30fea6d5d2a9d2e7939c54bb2f31910d.tar.gz |
s3:configure: allow building without SCHEDULE_FOR_DELETION with --enable-old-ctdb
Autobuild-User: Michael Adam <obnox@samba.org>
Autobuild-Date: Thu Mar 31 18:55:38 CEST 2011 on sn-devel-104
Diffstat (limited to 'source3')
-rw-r--r-- | source3/configure.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 6116c364835..f0d54ccc3d6 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5499,8 +5499,12 @@ if test "x$have_cluster_support" = "xyes" ; then ]) if test x"$ac_cv_have_CTDB_CONTROL_SCHEDULE_FOR_DELETION_decl" != x"yes" then - ctdb_broken="support for SCHEDULE_FOR_DELETION control missing" - have_cluster_support=no + if test "x$enable_old_ctdb" = "xyes" ; then + AC_MSG_WARN([ignoring missing SCHEDULE_FOR_DELETION (--enable-old-ctdb)]) + else + ctdb_broken="support for SCHEDULE_FOR_DELETION control missing" + have_cluster_support=no + fi fi fi |