diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-19 16:21:35 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2001-06-19 16:21:35 (GMT) |
commit | fbc0f37dc5c5fd86e825dc436b56fda23a2e7ea7 (patch) | |
tree | 6c44da88a7c2d81532808b3f8c887c28290d475c /src/H5config.h.in | |
parent | 5f113eac849ee628a15e70fdfed23b3b34a7db1c (diff) | |
download | hdf5-fbc0f37dc5c5fd86e825dc436b56fda23a2e7ea7.zip hdf5-fbc0f37dc5c5fd86e825dc436b56fda23a2e7ea7.tar.gz hdf5-fbc0f37dc5c5fd86e825dc436b56fda23a2e7ea7.tar.bz2 |
[svn-r4017] Purpose:
Code cleanup
Description:
Several system header files needed to be included on Linux machines to
get the prototypes for some of the system calls we are using.
Solution:
Added a new feature test macro for including the <features.h>
header on Linux machines, to set up compile macros for system header
files.
Platforms tested:
Linux (eirene), FreeBSD 4.3 (hawkwind)
Diffstat (limited to 'src/H5config.h.in')
-rw-r--r-- | src/H5config.h.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/H5config.h.in b/src/H5config.h.in index d61f9e3..ddfdadb 100644 --- a/src/H5config.h.in +++ b/src/H5config.h.in @@ -311,6 +311,9 @@ /* Define if you have the <stdint.h> header file. */ #undef HAVE_STDINT_H +/* Define if you have the <features.h> header file. */ +#undef HAVE_FEATURES_H + /* Define if you have the <sys/filio.h> header file. */ #undef HAVE_SYS_FILIO_H @@ -329,6 +332,9 @@ /* Define if you have the <sys/stat.h> header file. */ #undef HAVE_SYS_STAT_H +/* Define if you have the <sys/resource.h> header file. */ +#undef HAVE_SYS_RESOURCE_H + /* Define if you have the <sys/sysinfo.h> header file. */ #undef HAVE_SYS_SYSINFO_H |