server: On macOS, don't use clock_gettime() even if it's available.
commit1984e86b44343c8f1cdb163b8481ab84ca9cd16a
authorKen Thomases <ken@codeweavers.com>
Thu, 1 Jun 2017 19:48:06 +0000 (1 14:48 -0500)
committerAlexandre Julliard <julliard@winehq.org>
Fri, 2 Jun 2017 08:33:16 +0000 (2 10:33 +0200)
tree846dcd52aaa84caf33612039e148ef191da0639c
parent27c71e09ad51ba6aa672a46379efd10b5959863f
server: On macOS, don't use clock_gettime() even if it's available.

The problem is building against the 10.12 or later SDK but deploying to 10.11
or earlier.  Support for clock_gettime() is new with 10.12 so configure finds
it and the code uses it, but the symbol is weak linked and resolves to NULL
when running on earlier versions.

Signed-off-by: Ken Thomases <ken@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
server/request.c