search for: hdf5ldflags

Displaying 1 result from an estimated 1 matches for "hdf5ldflags".

2002 Mar 01
1
Building hdf5 on Windows
....in ================= AC_INIT(DESCRIPTION) 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)...