diff options
author | Dmitri Tikhonov <dtikhonov@live.com> | 2017-10-30 08:12:41 -0400 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2017-10-30 15:27:46 +0100 |
commit | d531f33ba2210ef11d0849bc73654e03affd0cfa (patch) | |
tree | 70360646ecedccbf1a5579bbe7711152c746fbc6 /configure.ac | |
parent | e240a546a7ac2fa7956adb664b8c40c4dee4f82b (diff) | |
download | curl-d531f33ba2210ef11d0849bc73654e03affd0cfa.tar.gz |
timeval: use mach time on MacOS
If clock_gettime() is not supported, use mach_absolute_time() on MacOS.
closes #2033
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 68b3a071a..5272feaa0 100755 --- a/configure.ac +++ b/configure.ac @@ -3385,6 +3385,7 @@ AC_CHECK_FUNCS([geteuid \ getrlimit \ gettimeofday \ if_nametoindex \ + mach_absolute_time \ pipe \ setlocale \ setmode \ |