Define MACOS when building for OS X

The library uses this define to enable OS X specific functionality
in general, even if none of those snippets actually have been
strictly required so far.
This commit is contained in:
Martin Storsjö 2014-01-21 21:15:53 +02:00
parent 36f96cb766
commit 797a19e367

View File

@ -1,6 +1,6 @@
ASM = nasm
CFLAGS += -Wno-deprecated-declarations -Werror -fPIC
CFLAGS += -Wno-deprecated-declarations -Werror -fPIC -DMACOS
LDFLAGS += -lpthread
ASMFLAGS += --prefix _ -DNOPREFIX
ifeq ($(ENABLE64BIT), Yes)