search for: have_hdf5

Displaying 2 results from an estimated 2 matches for "have_hdf5".

2002 Mar 01
1
Building hdf5 on Windows
...df5"; then HDF5LDFLAGS=-L${with_hdf5}/lib HDF5CPPFLAGS=-I${with_hdf5}/include fi LIBS=-lm CPPFLAGS="$ZLIBCPPFLAGS $HDF5CPPFLAGS $CPPFLAGS" LDFLAGS="$HDF5LDFLAGS $ZLIBLDFLAGS $LDFLAGS" AC_SEARCH_LIBS(inflate, z, have_zlib=yes, have_zlib=no) AC_SEARCH_LIBS(H5open, hdf5, have_hdf5=yes, have_hdf5=no) if test $have_zlib = no; then AC_MSG_ERROR(Can't find zlib) fi if test "$have_hdf5" = yes; then AC_MSG_CHECKING(for sufficiently new HDF5) AC_TRY_LINK([#include <hdf5.h>], [ H5T_pers_t convtype = H5T_PERS_SOFT; H5Tclose ((hid_t) 0);], h...
2000 Jan 29
1
HDF5 as a module
...[for HDF5 version >= 1.2], - r_cv_lib_hdf5, - AC_TRY_LINK( - [#include <hdf5.h>], - [ H5T_pers_t convtype = H5T_PERS_SOFT; - H5Tclose ((hid_t) 0);], - r_cv_lib_hdf5=yes, - r_cv_lib_hdf5=no)) - if test "${r_cv_lib_hdf5}" = yes; then - AC_DEFINE(HAVE_HDF5) - else - LIBS=${ac_save_LIBS} - fi - ]) - ]) - dnl dnl R_FUNC___SETFPUCW dnl AC_DEFUN(R_FUNC___SETFPUCW, --- 543,548 ---- Index: configure.in =================================================================== RCS file: /home/rcvs/src/R/configure.in,v retrieving revision 1.159 d...