aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2009-11-17 12:01:52 +0100
committerThomas White <taw@bitwiz.org.uk>2009-11-17 12:01:52 +0100
commit3dabacbf8b897ced68418504e9fc9511c09119a9 (patch)
treefafcf1d2440b8a6652b0dd226015cd793747bb03 /configure.ac
parent924736e50cf25baacb22bebbddf28a4f60194af5 (diff)
Assume -lhdf5 if not told otherwise
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 1eac1a93..b42ca0c3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@ AC_ARG_WITH(hdf5,
[AS_HELP_STRING([--with-hdf5], [specify location of HDF5 library])],
[HDF5_CFLAGS="-I$withval/include"
HDF5_LIBS="-L$withval/lib -lhdf5"],
-[])
+[HDF5_LIBS="-lhdf5"])
CFLAGS="$CFLAGS $HDF5_CFLAGS"
LIBS="$LIBS $HDF5_LIBS -lm -lgsl -lgslcblas"