From: Anoop C S Date: Tue, 2 Jul 2024 05:27:28 +0000 (+0530) Subject: ctdb/wscript: Remove long pending unsupported option X-Git-Tag: tdb-1.4.11~218 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=6ba69da8d37cdc1c851835048b2eea5d13e1810f;p=thirdparty%2Fsamba.git ctdb/wscript: Remove long pending unsupported option It has been a while since --with-libcephfs option was dropped. Therefore stop advertising it through waf scripts. Signed-off-by: Anoop C S Reviewed-by: Volker Lendecke Autobuild-User(master): Volker Lendecke Autobuild-Date(master): Tue Jul 2 09:13:20 UTC 2024 on atb-devel-224 --- diff --git a/ctdb/wscript b/ctdb/wscript index a557d0a872e..6a16991f413 100644 --- a/ctdb/wscript +++ b/ctdb/wscript @@ -102,9 +102,6 @@ def options(opt): help=("Use pcap for packet capture (default=no)"), action="store_true", dest='ctdb_pcap', default=False) - opt.add_option('--with-libcephfs', - help=("Directory under which libcephfs is installed"), - action="store", dest='libcephfs_dir', default=None) opt.add_option('--enable-ceph-reclock', help=("Enable Ceph CTDB recovery lock helper (default=no)"), action="store_true", dest='ctdb_ceph_reclock', default=False) @@ -282,11 +279,6 @@ def configure(conf): Logs.info('Building with etcd support') conf.env.etcd_reclock = have_etcd_reclock - if Options.options.libcephfs_dir: - Logs.error('''--with-libcephfs no longer supported, please use compiler - flags instead, e.g. GCC LIBRARY_PATH and C_INCLUDE_PATH''') - sys.exit(1) - if Options.options.ctdb_ceph_reclock: if (conf.CHECK_HEADERS('rados/librados.h', False, False, 'rados') and conf.CHECK_LIB('rados', shlib=True)):