diff options
author | Rickard Green <[email protected]> | 2015-03-24 19:43:08 +0100 |
---|---|---|
committer | Rickard Green <[email protected]> | 2015-03-25 14:48:34 +0100 |
commit | 139edf3f40fcf746fe21318f03032c091b3c2fc1 (patch) | |
tree | 610fd2b83989922ca6e69e1164e58520d41266ed /erts/aclocal.m4 | |
parent | c20482023b70768bd84d25f1e34dbbc2fe09cf31 (diff) | |
download | otp-139edf3f40fcf746fe21318f03032c091b3c2fc1.tar.gz otp-139edf3f40fcf746fe21318f03032c091b3c2fc1.tar.bz2 otp-139edf3f40fcf746fe21318f03032c091b3c2fc1.zip |
Fixes and cleanup
Diffstat (limited to 'erts/aclocal.m4')
-rw-r--r-- | erts/aclocal.m4 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/erts/aclocal.m4 b/erts/aclocal.m4 index 7a969547cf..40ea980209 100644 --- a/erts/aclocal.m4 +++ b/erts/aclocal.m4 @@ -745,9 +745,9 @@ AC_DEFUN(ERL_MONOTONIC_CLOCK, done ]) - AC_CHECK_FUNCS([clock_getres gethrtime]) + AC_CHECK_FUNCS([clock_getres clock_get_attributes gethrtime]) - AC_CACHE_CHECK([for mach clock_get_time()], erl_cv_mach_clock_get_time_monotonic, + AC_CACHE_CHECK([for mach clock_get_time() with monotonic clock type], erl_cv_mach_clock_get_time_monotonic, [ AC_TRY_COMPILE([ #include <mach/clock.h> @@ -854,9 +854,9 @@ AC_DEFUN(ERL_WALL_CLOCK, done ]) - AC_CHECK_FUNCS([clock_getres gettimeofday]) + AC_CHECK_FUNCS([clock_getres clock_get_attributes gettimeofday]) - AC_CACHE_CHECK([for mach clock_get_time()], erl_cv_mach_clock_get_time_wall, + AC_CACHE_CHECK([for mach clock_get_time() with wall clock type], erl_cv_mach_clock_get_time_wall, [ AC_TRY_COMPILE([ #include <mach/clock.h> |