diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:39:52 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:39:52 (GMT) |
commit | 6b522ad23691a59ca2fc2cb50dd16e71485469a2 (patch) | |
tree | 14b1629de76c35dab497048041d0a31f10f58e95 /fortran/configure.in | |
parent | 426be778aa3169a848e33378bae655f3ba0a8df4 (diff) | |
download | hdf5-6b522ad23691a59ca2fc2cb50dd16e71485469a2.zip hdf5-6b522ad23691a59ca2fc2cb50dd16e71485469a2.tar.gz hdf5-6b522ad23691a59ca2fc2cb50dd16e71485469a2.tar.bz2 |
[svn-r2919] Purpose:
Buglet fix...
Description:
When configuring, configure would complain about there not being
a confdefs.h file.
Solution:
Added a src/H5config.h file which configure can generate. This
can be used for configure stuff later, but is empty now.
Platforms tested:
Linux
Diffstat (limited to 'fortran/configure.in')
-rw-r--r-- | fortran/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/configure.in b/fortran/configure.in index e2c98b9..220749b 100644 --- a/fortran/configure.in +++ b/fortran/configure.in @@ -10,7 +10,7 @@ dnl Initialize configure. dnl AC_REVISION($Id$) AC_INIT(src/HDF5.f90) -dnl AC_CONFIG_HEADER(config.h) +AC_CONFIG_HEADER(src/H5config.h) AC_CONFIG_AUX_DIR(bin) AC_CANONICAL_HOST AC_SUBST(CPPFLAGS) |