diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-17 22:22:50 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2001-12-17 22:22:50 (GMT) |
commit | da751993781079b2700edc74992bc679ca88954a (patch) | |
tree | 74170310ae1ffa00b208261e04d4c1636dee1ced /configure.in | |
parent | 0a83e2735796573c62edcbb488f3ead4a6671f66 (diff) | |
download | hdf5-da751993781079b2700edc74992bc679ca88954a.zip hdf5-da751993781079b2700edc74992bc679ca88954a.tar.gz hdf5-da751993781079b2700edc74992bc679ca88954a.tar.bz2 |
[svn-r4729]
Purpose:
Feature Fix
Description:
The new feature (allowing the user to specify =DIR for a --with-xxx
option instead of requiring =INC,LIB for them) needed a better
explanation.
Solution:
Created a phoney --with-fnord option whose only purpose is to supply
a --help message.
Platforms tested:
Linux
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/configure.in b/configure.in index c3f5a33..5bb45cb 100644 --- a/configure.in +++ b/configure.in @@ -620,10 +620,19 @@ AC_SUBST(H4TOH5) H4TOH5=h4toh5 AC_SUBST(H4TOH5TEST) H4TOH5TEST=h4toh5test AC_SUBST(TESTH4TOH5) TESTH4TOH5='$(srcdir)/testh4toh5.sh' +AC_ARG_WITH(fnord, + [ + For the following --with-xxx options, you can specify where the header + files and libraries are in two different ways: + + --with-xxx=INC,LIB - Specify individually the include directory and + library directory separated by a comma + --with-xxx=DIR - Specify only the directory which contains the + include/ and lib/ subdirectories + ],,) + AC_ARG_WITH(hdf4, - [ --with-hdf4[=DIR] Use the HDF4 library where DIR is the directory - containing the include/ and lib/ subdirectories which - have the HDF4 header files and libraries [default=no]],, + [ --with-hdf4[=DIR] Use the HDF4 library [default=no]],, withval=no) case "$withval" in |