From 87e9c04205db22de7ac69d9e5cd5ecd89f03cedd Mon Sep 17 00:00:00 2001 From: Kevin Shanahan Date: Tue, 12 Feb 2013 08:58:27 +1030 Subject: [PATCH] build: detect darwin as a supported platform Signed-off-by: Kevin Shanahan --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 39610395..924178d2 100644 --- a/Makefile +++ b/Makefile @@ -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