summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2012-02-07 22:07:26 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2012-02-07 22:07:26 (GMT)
commit92d5cd3baf317573ed223d7fd373d8a8dc980547 (patch)
tree0c51c4961afc50431d3b5fc74a211f4d1d06a4c0 /configure
parentc614ba6fccbd3e665d2bd91c23e7f129e01b8f27 (diff)
downloadhdf5-92d5cd3baf317573ed223d7fd373d8a8dc980547.zip
hdf5-92d5cd3baf317573ed223d7fd373d8a8dc980547.tar.gz
hdf5-92d5cd3baf317573ed223d7fd373d8a8dc980547.tar.bz2
[svn-r21916] upper level commit :-\
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure36
1 files changed, 35 insertions, 1 deletions
diff --git a/configure b/configure
index 1bd687c..74810a6 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.in Id: configure.in 21867 2012-01-08 16:39:01Z hdftest .
+# From configure.in Id: configure.in 21884 2012-01-22 15:49:58Z hdftest .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.68 for HDF5 1.9.107.
#
@@ -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]
@@ -28313,6 +28316,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; }