diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-15 23:25:38 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-05-15 23:25:38 (GMT) |
commit | b94cfc0ba0ffc764cefc25f31920feaa584cba76 (patch) | |
tree | 8776d8822f28d93d298d5ad2ab82e1f4290ccbcd /configure.in | |
parent | b496ac1482d97086112c890a0154ce9e1522a815 (diff) | |
download | hdf5-b94cfc0ba0ffc764cefc25f31920feaa584cba76.zip hdf5-b94cfc0ba0ffc764cefc25f31920feaa584cba76.tar.gz hdf5-b94cfc0ba0ffc764cefc25f31920feaa584cba76.tar.bz2 |
[svn-r6879] Purpose:
Fix
Description:
The SZLIB stuff was being checked by default. This isn't right as not
everyone will have SZLIB stuff.
Solution:
Made the default "no" instead of "yes"
Platforms tested:
Modi4 (Fortran & Parallel)
Verbena (Fortran & C++)
Arabica (Fortran)
Misc. update:
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index f1152a3..8b3e57c 100644 --- a/configure.in +++ b/configure.in @@ -851,8 +851,8 @@ dnl AC_ARG_WITH([szlib], [AC_HELP_STRING([--with-szlib=DIR], [Use szlib library for external szlib I/O - filter [default=yes]])],, - withval=yes) + filter [default=no]])],, + withval=no) case $withval in yes) |