]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
ctdb/wscript: Remove long pending unsupported option
authorAnoop C S <anoopcs@samba.org>
Tue, 2 Jul 2024 05:27:28 +0000 (10:57 +0530)
committerVolker Lendecke <vl@samba.org>
Tue, 2 Jul 2024 09:13:20 +0000 (09:13 +0000)
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

ctdb/wscript

index a557d0a872eb5b4cc47a49477f45fa5205ea0c96..6a16991f4138f6e5046b9e1bc39ed87fdc2fce77 100644 (file)
@@ -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)):