Displaying 1 result from an estimated 1 matches for "hdf5cppflag".
Did you mean:
hdf5cppflags
2002 Mar 01
1
Building hdf5 on Windows
...CRIPTION)
AC_PROG_CC
AC_ARG_WITH(zlib, --with-zlib=/XTRA/hdf5)
if test -n "$with_zlib"; then
ZLIBLDFLAGS=-L${with_zlib}/lib
ZLIBCPPFLAGS=-I${with_zlib}/include
fi
AC_ARG_WITH(hdf5, --with-hdf5=/XTRA/hdf5)
if test -n "$with_hdf5"; 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...