Skip to content
Snippets Groups Projects
Commit 68b84095 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard
Browse files

server: Remove check for macOS version < 10.5.


Our stated minimum requirement is 10.8.

Signed-off-by: default avatarHuw Davies <huw@codeweavers.com>
Signed-off-by: Alexandre Julliard's avatarAlexandre Julliard <julliard@winehq.org>
parent 028c9832
No related branches found
No related tags found
No related merge requests found
......@@ -627,16 +627,6 @@ static int kqueue_fd = -1;
static inline void init_epoll(void)
{
#ifdef __APPLE__ /* kqueue support is broken in Mac OS < 10.5 */
int mib[2];
char release[32];
size_t len = sizeof(release);
mib[0] = CTL_KERN;
mib[1] = KERN_OSRELEASE;
if (sysctl( mib, 2, release, &len, NULL, 0 ) == -1) return;
if (atoi(release) < 9) return;
#endif
kqueue_fd = kqueue();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment