diff options
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 6116c36483..f0d54ccc3d 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 |