build: detect darwin as a supported platform

Signed-off-by: Kevin Shanahan <kmshanah@disenchant.net>
This commit is contained in:
Kevin Shanahan 2013-02-12 08:58:27 +10:30
parent f561e6867f
commit 87e9c04205
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ TOPDIR := $(shell pwd)
ifneq (,$(findstring MINGW32,$(SYSNAME)))
HOST_OS = WIN32
else
ifneq (,$(findstring $(SYSNAME),FreeBSD NetBSD OpenBSD))
ifneq (,$(findstring $(SYSNAME),FreeBSD NetBSD OpenBSD Darwin))
HOST_OS = UNIX
UNIX = bsd
else