summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2001-12-30 05:23:38 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2001-12-30 05:23:38 (GMT)
commite22c09563636a72fbf6600685fcb14df6e069436 (patch)
tree6feecaaebc3cf8de207f5d74864d8b7bca6eb69b /configure.in
parentbb0692aff25e35793dccf071a752f5b7faf1ae9a (diff)
downloadhdf5-e22c09563636a72fbf6600685fcb14df6e069436.zip
hdf5-e22c09563636a72fbf6600685fcb14df6e069436.tar.gz
hdf5-e22c09563636a72fbf6600685fcb14df6e069436.tar.bz2
[svn-r4757] Purpose:
Removing the DPSS (gridstorage) driver source code. Description: The DPSS (using Grid-Storage) driver is retired. Removed the configure option with-gridstorage from configure.in. Cvs remove the following files ./src/H5FDdpss.c ./src/H5FDdpss.h ./test/dpss_read.c ./test/dpss_write.c Regenerated Dependencies files (some had to be hand-edited since 'make depend' did not cover them.) Removed reference to DPSS Virtual file driver from H5F.c. Platforms tested: modi4 (Parallel; -with-gass=...), eirene, arabica (fortran, cxx).
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in69
1 files changed, 0 insertions, 69 deletions
diff --git a/configure.in b/configure.in
index 5bb45cb..b0dabd0 100644
--- a/configure.in
+++ b/configure.in
@@ -875,72 +875,6 @@ if test -n "$GASS"; then
fi
dnl ----------------------------------------------------------------------
-dnl Is Grid Storage present? If so then we can compile in the Grid
-dnl Storage driver.
-dnl
-AC_SUBST(GRIDSTORAGE) GRIDSTORAGE="yes"
-AC_SUBST(TESTGRIDSTORAGE) TESTGRIDSTORAGE='$(srcdir)/testgridstorage'
-AC_ARG_WITH(gridstorage,
- [ --with-gridstorage[=DIR] Use the Globus Grid Storage driver [default=no]],,
- withval=no)
-
-case "$withval" in
- yes)
- AC_CHECK_HEADERS(grid_storage_file.h,,unset GRIDSTORAGE TESTGRIDSTORAGE)
- AC_CHECK_LIB(grid_storage_client,main,,unset GRIDSTORAGE TESTGRIDSTORAGE)
- AC_CHECK_LIB(grid_storage_file,grid_storage_open,,
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- ;;
- no)
- AC_MSG_CHECKING(for GRIDSTORAGE)
- AC_MSG_RESULT(suppressed)
- unset GRIDSTORAGE TESTGRIDSTORAGE
- ;;
- *)
- case "$withval" in
- *,*)
- gridstorage_inc="`echo $withval | cut -f1 -d,`"
- gridstorage_lib="`echo $withval | cut -f2 -d, -s`"
- ;;
- *)
- if test -n "$withval"; then
- gridstorage_inc="$withval/include"
- gridstorage_lib="$withval/lib"
- fi
- ;;
- esac
-
- if test -n "$gridstorage_inc"; then
- saved_CPPFLAGS="$CPPFLAGS"
- CPPFLAGS="$CPPFLAGS -I$gridstorage_inc"
- AC_CHECK_HEADERS(grid_storage_file.h,,
- CPPFLAGS="$saved_CPPFLAGS"
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- else
- AC_CHECK_HEADERS(grid_storage_file.h)
- fi
-
- if test -n "$gridstorage_lib"; then
- saved_LDFLAGS="$LDFLAGS"
- LDFLAGS="$LDFLAGS -L$gridstorage_lib"
- AC_CHECK_LIB(grid_storage_client,main,,
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- AC_CHECK_LIB(grid_storage_file,grid_storage_open,,
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- else
- AC_CHECK_LIB(grid_storage_client,main,,
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- AC_CHECK_LIB(grid_storage_file,grid_storage_open,,
- unset GRIDSTORAGE TESTGRIDSTORAGE)
- fi
- ;;
-esac
-
-if test -n "$GRIDSTORAGE"; then
- AC_DEFINE(HAVE_GRIDSTORAGE)
-fi
-
-dnl ----------------------------------------------------------------------
dnl Are SRB Client and other system libraries(socket, elf) present?
dnl
AC_SUBST(SRB) SRB="yes"
@@ -1955,9 +1889,6 @@ IF_YES_NO "$HDF_FORTRAN"
PRINT_N " GASS"
IF_YES_NO "$GASS"
-PRINT_N " GridStorage"
-IF_YES_NO "$GRIDSTORAGE"
-
PRINT_N " HDF4"
IF_YES_NO "$HAVE_HDF4"