another path check for HDF5 with ubuntu 15.04

This commit is contained in:
suter_a 2015-05-15 14:29:14 +02:00
parent e4f11aca8c
commit e78619c33b

View File

@ -525,6 +525,9 @@ AC_ARG_ENABLE([NeXus], [AS_HELP_STRING([--enable-NeXus],[build optional NeXus su
elif test -r /usr/local/hdf5/include/hdf5.h; then elif test -r /usr/local/hdf5/include/hdf5.h; then
HDF5_PREFIX="/usr/local/hdf5" HDF5_PREFIX="/usr/local/hdf5"
AC_MSG_RESULT([${HDF5_PREFIX}]) AC_MSG_RESULT([${HDF5_PREFIX}])
elif test -r /usr/include/hdf5/serial/hdf5.h; then
HDF5_PREFIX="/usr/include/hdf5/serial"
AC_MSG_RESULT([${HDF5_PREFIX}])
elif test -r /usr/include/hdf5.h; then elif test -r /usr/include/hdf5.h; then
HDF5_PREFIX="/usr" HDF5_PREFIX="/usr"
AC_MSG_RESULT([${HDF5_PREFIX}]) AC_MSG_RESULT([${HDF5_PREFIX}])