mirror of
https://github.com/samba-team/samba.git
synced 2025-01-08 21:18:16 +03:00
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 <anoopcs@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org> Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Tue Jul 2 09:13:20 UTC 2024 on atb-devel-224
This commit is contained in:
parent
121687e7bd
commit
6ba69da8d3
@ -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)):
|
||||
|
Loading…
Reference in New Issue
Block a user