diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2011-05-23 17:29:14 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2011-05-23 17:29:14 (GMT) |
commit | 3cfec078a6d5305657380b68558900d8aa955470 (patch) | |
tree | 61d1850eced904bad37ad61be552de3a291d4b68 /configure.in | |
parent | c8d91d05a40a05e0d73202ad1348294a5446d42e (diff) | |
download | hdf5-3cfec078a6d5305657380b68558900d8aa955470.zip hdf5-3cfec078a6d5305657380b68558900d8aa955470.tar.gz hdf5-3cfec078a6d5305657380b68558900d8aa955470.tar.bz2 |
[svn-r20892] Purpose:
Adds a check for the mach_time header file.
Description:
The mach time header file is needed for the monotonic timer / log VFD
work. No code in the trunk depends on this file at this time.
Tested on:
jam(linux32-LE) tejeda(darwin32 LE) local darwin64 (snow leopard)
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.in b/configure.in index f1c0383..c761e5a 100644 --- a/configure.in +++ b/configure.in @@ -1214,6 +1214,9 @@ AC_CHECK_HEADERS([sys/socket.h sys/types.h]) AC_CHECK_HEADERS([stddef.h setjmp.h features.h]) AC_CHECK_HEADERS([stdint.h], [C9x=yes]) +dnl Darwin +AC_CHECK_HEADERS([mach/mach_time.h]) + dnl Windows case "`uname`" in CYGWIN*) |