diff options
author | David Young <dyoung@hdfgroup.org> | 2019-10-03 20:56:34 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2019-10-03 21:01:40 (GMT) |
commit | b8a93a7224114739e42f32aaf62ae64fd1aad33e (patch) | |
tree | 9e318d7ecc226320dbb98bdc40eecc94357d972a /configure.ac | |
parent | bbc1264ea67f93eabe53c7b555933072231e108d (diff) | |
download | hdf5-b8a93a7224114739e42f32aaf62ae64fd1aad33e.zip hdf5-b8a93a7224114739e42f32aaf62ae64fd1aad33e.tar.gz hdf5-b8a93a7224114739e42f32aaf62ae64fd1aad33e.tar.bz2 |
Let us override the examples directory using --with-examplesdir=DIR.
This is handy for NetBSD where HDF5 examples are installed
by convention in $prefix/share/examples/hdf5/ rather than in
${prefix}/share/hdf5_examples/, which is the HDF5 default.
Place hdf5_examples/ under ${datarootdir} which on most systems will be
${prefix}/share/, anyway.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 345c4bd..0eada60 100644 --- a/configure.ac +++ b/configure.ac @@ -2967,6 +2967,28 @@ fi AC_CACHE_SAVE ## ---------------------------------------------------------------------- +## Use custom examples path. +## +AC_MSG_CHECKING([for custom examples path definition]) +AC_ARG_WITH([examplesdir], + [AS_HELP_STRING([--with-examplesdir=location], + [Specify path for examples + [default="DATAROOTDIR/hdf5_examples"]])],, + withval="${datarootdir}/hdf5_examples") + +if test "X$withval" = "X"; then + AC_MSG_RESULT([default]) + examplesdir="${datarootdir}/hdf5_examples" +else + AC_MSG_RESULT([$withval]) + examplesdir=$withval +fi + +AC_SUBST([examplesdir]) +AC_DEFINE_UNQUOTED([EXAMPLESDIR], ["$examplesdir"], + [Define the examples directory]) + +## ---------------------------------------------------------------------- ## Enable custom plugin default path for library. It requires SHARED support. ## AC_MSG_CHECKING([for custom plugin default path definition]) |