summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure34
1 files changed, 34 insertions, 0 deletions
diff --git a/configure b/configure
index d388a1f..91ce3a8 100755
--- a/configure
+++ b/configure
@@ -919,6 +919,7 @@ with_mpe
enable_mpi_size
enable_filters
with_default_vfd
+with_default_vol
enable_direct_vfd
enable_dconv_exception
enable_dconv_accuracy
@@ -1665,6 +1666,8 @@ Optional Packages:
--with-mpe=DIR Use MPE instrumentation [default=no]
--with-default-vfd=driver
Specify default file driver [default=sec2]
+ --with-default-vol=plugin
+ Specify default vol plugin [default=native]
--with-default-api-version=(v16|v18|v110)
Specify default release version of public symbols
[default=v110]
@@ -29191,6 +29194,37 @@ fi
## Check if Direct I/O driver is enabled by --enable-direct-vfd
##
+{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Default VOL definition" >&5
+$as_echo_n "checking for Default VOL definition... " >&6; }
+
+# Check whether --with-default-vol was given.
+if test "${with_default_vol+set}" = set; then :
+ withval=$with_default_vol;
+else
+ withval=native
+fi
+
+
+if test "X$withval" = "Xnative"; then
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+$as_echo "yes" >&6; }
+ default_vol=yes
+ vol_define=H5VL_NATIVE
+else
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
+$as_echo "no" >&6; }
+ default_vol=no
+fi
+
+if test "X$default_vol" = "Xyes"; then
+
+cat >>confdefs.h <<_ACEOF
+#define DEFAULT_VOL $vol_define
+_ACEOF
+
+fi
+
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for Direct Virtual File Driver support" >&5
$as_echo_n "checking for Direct Virtual File Driver support... " >&6; }