The following changes since commit d4bf5e6193b97c5e5490fdb93b069d149a38777c: gettime: fix whitespace damage (2022-06-19 12:04:19 -0600) are available in the Git repository at: git://git.kernel.dk/fio.git master for you to fetch changes up to 6aaebfbe7269f95164ac83a04505869f96f5f83a: configure: add option to disable xnvme build (2022-06-22 11:45:32 -0600) ---------------------------------------------------------------- Ankit Kumar (1): configure: add option to disable xnvme build configure | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) --- Diff of recent changes: diff --git a/configure b/configure index 510af424..04a1d0e2 100755 --- a/configure +++ b/configure @@ -171,7 +171,7 @@ march_set="no" libiscsi="no" libnbd="no" libnfs="no" -xnvme="no" +xnvme="" libzbc="" dfs="" dynamic_engines="no" @@ -241,7 +241,7 @@ for opt do ;; --disable-libzbc) libzbc="no" ;; - --enable-xnvme) xnvme="yes" + --disable-xnvme) xnvme="no" ;; --disable-tcmalloc) disable_tcmalloc="yes" ;; @@ -294,7 +294,7 @@ if test "$show_help" = "yes" ; then echo "--with-ime= Install path for DDN's Infinite Memory Engine" echo "--enable-libiscsi Enable iscsi support" echo "--enable-libnbd Enable libnbd (NBD engine) support" - echo "--enable-xnvme Enable xnvme support" + echo "--disable-xnvme Disable xnvme support even if found" echo "--disable-libzbc Disable libzbc even if found" echo "--disable-tcmalloc Disable tcmalloc support" echo "--dynamic-libengines Lib-based ioengines as dynamic libraries" @@ -2619,7 +2619,7 @@ fi ########################################## # Check if we have xnvme -if test "$xnvme" != "yes" ; then +if test "$xnvme" != "no" ; then if check_min_lib_version xnvme 0.2.0; then xnvme="yes" xnvme_cflags=$(pkg-config --cflags xnvme)