diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:40:42 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2000-11-15 16:40:42 (GMT) |
commit | f099d830600f9c7c97307c89ce4f0dcf9a777c9f (patch) | |
tree | f0063ba958cfc14b9605a78987fb9e83cfdb6237 /c++/configure.in | |
parent | 6b522ad23691a59ca2fc2cb50dd16e71485469a2 (diff) | |
download | hdf5-f099d830600f9c7c97307c89ce4f0dcf9a777c9f.zip hdf5-f099d830600f9c7c97307c89ce4f0dcf9a777c9f.tar.gz hdf5-f099d830600f9c7c97307c89ce4f0dcf9a777c9f.tar.bz2 |
[svn-r2920] 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 'c++/configure.in')
-rw-r--r-- | c++/configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/c++/configure.in b/c++/configure.in index 18bf836..0b61bc4 100644 --- a/c++/configure.in +++ b/c++/configure.in @@ -10,7 +10,7 @@ dnl Initialize configure. dnl AC_REVISION($Id$) AC_INIT(src/H5Library.C) -dnl AC_CONFIG_HEADER(config.h) +AC_CONFIG_HEADER(src/H5config.h) AC_CONFIG_AUX_DIR(bin) AC_CANONICAL_HOST AC_SUBST(CPPFLAGS) @@ -366,7 +366,7 @@ else fi dnl Some cleanup stuff -rm -rf conftest* confdefs* core core.* *.core dummy.o +rm -f conftest conftest.o conftest.c core core.* *.core dummy.o dnl Build config.status, touch the stamp files, and build all the Makefiles. dnl The order is such that the first `make' does not need to update any |