diff options
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 34 |
1 files changed, 34 insertions, 0 deletions
@@ -896,6 +896,7 @@ with_mpe enable_mpi_size enable_filters with_default_vfd +with_default_vol enable_direct_vfd enable_dconv_exception enable_dconv_accuracy @@ -1641,6 +1642,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] @@ -28297,6 +28300,37 @@ _ACEOF fi +{ $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; } |