diff options
author | Michael Adam <obnox@samba.org> | 2009-12-11 16:45:38 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-02-12 23:12:10 +0100 |
commit | 9113ce82b59c718ac709eb01b125e9e6746a96b7 (patch) | |
tree | 73a9af8b0eb18ca829c0dfbb988bf767e0a97068 | |
parent | 3fe7ce141d6afe3825b06c5feb90558911e4df1e (diff) | |
download | samba-9113ce82b59c718ac709eb01b125e9e6746a96b7.tar.gz samba-9113ce82b59c718ac709eb01b125e9e6746a96b7.tar.bz2 samba-9113ce82b59c718ac709eb01b125e9e6746a96b7.zip |
s3:build: remove checks for deprecated ctdb controls.
Michael
-rw-r--r-- | source3/configure.in | 36 |
1 files changed, 1 insertions, 35 deletions
diff --git a/source3/configure.in b/source3/configure.in index dfa275d3fd..0de367ade1 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5296,40 +5296,6 @@ AC_CHECK_HEADERS(ctdb.h ctdb_private.h,,,[ #include <ctdb.h> ]) -AC_HAVE_DECL(CTDB_CONTROL_TRANS2_COMMIT_RETRY,[ -#include "confdefs.h" -#define NO_CONFIG_H -#include "replace.h" -#include "system/wait.h" -#include "system/network.h" -#include <talloc.h> -#include <tdb.h> -#include <ctdb.h> -#include <ctdb_private.h> -]) -if test x"$ac_cv_have_CTDB_CONTROL_TRANS2_COMMIT_RETRY_decl" = x"yes"; then - ctdb_broken=no -else - ctdb_broken="missing transaction support" -fi - -AC_HAVE_DECL(CTDB_CONTROL_TRANS2_ACTIVE,[ -#include "confdefs.h" -#define NO_CONFIG_H -#include "replace.h" -#include "system/wait.h" -#include "system/network.h" -#include <talloc.h> -#include <tdb.h> -#include <ctdb.h> -#include <ctdb_private.h> -]) -if test x"$ac_cv_have_CTDB_CONTROL_TRANS2_ACTIVE_decl" = x"yes"; then - ctdb_broken=no -else - ctdb_broken="transaction support too old" -fi - AC_HAVE_DECL(CTDB_CONTROL_TRANS3_COMMIT,[ #include "confdefs.h" #define NO_CONFIG_H @@ -5344,7 +5310,7 @@ AC_HAVE_DECL(CTDB_CONTROL_TRANS3_COMMIT,[ if test x"$ac_cv_have_CTDB_CONTROL_TRANS3_COMMIT_decl" = x"yes"; then ctdb_broken=no else - ctdb_broken="transaction support too old" + ctdb_broken="ctdb transaction support missing or too old" fi # in ctdb 1.0.57 ctdb_control_tcp was temparary renamed to ctdb_tcp_client |