From 3ab7b505d3ccfe2351eea8e3ccb1a5c958b27886 Mon Sep 17 00:00:00 2001 From: Michael Date: Tue, 26 Jan 2016 17:52:14 -0800 Subject: Fix colors on OSX. Apple OSes define __APPLE__ instead of the lower case __apple__. --- src/support/colors.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/support/colors.cpp b/src/support/colors.cpp index 7310427e4..94f8bedc9 100644 --- a/src/support/colors.cpp +++ b/src/support/colors.cpp @@ -19,7 +19,7 @@ #include #include -#if defined(__linux__) || defined(__apple__) +#if defined(__linux__) || defined(__APPLE__) # define CAN_HAZ_COLOR 1 # include #endif -- cgit v1.2.3