Skip to content
Snippets Groups Projects
Commit 575fb366 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Disable poll() on Darwin.

@anonymouspage reported it broken in !212.
parent 13de1fc4
No related branches found
No related tags found
No related merge requests found
......@@ -215,7 +215,9 @@ endif
os := $(shell echo $(os) | tr '[A-Z]' '[a-z]' | tr ' ' '_')
ifneq ($(os),win32)
CFLAGS += -DPREFER_POLL
ifneq ($(os),darwin)
CFLAGS += -DPREFER_POLL
endif
endif
machine := $(shell if uname -m | egrep -v "(i[3456789]*|x)86" > /dev/null; then uname -m | tr "[A-Z]" "[a-z]" | tr " " "_" ; fi)
......
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