From 594525fae982ba768e7e4604d429d0bdb016a7dd Mon Sep 17 00:00:00 2001 From: Ben Gamari <ben@smart-cactus.org> Date: Wed, 28 Jun 2023 21:34:44 -0400 Subject: [PATCH] base: Fix incorrect CPP guard This was guarded on `darwin_HOST_OS` instead of `defined(darwin_HOST_OS)`. (cherry picked from commit d7ef1704aeba451bd3e0efbdaaab2638ee1f0bc8) --- libraries/base/include/HsBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/base/include/HsBase.h b/libraries/base/include/HsBase.h index d841141be2e..d883eb8d64a 100644 --- a/libraries/base/include/HsBase.h +++ b/libraries/base/include/HsBase.h @@ -540,7 +540,7 @@ INLINE int __hscore_open(char *file, int how, mode_t mode) { } #endif -#if darwin_HOST_OS +#if defined(darwin_HOST_OS) // You should not access _environ directly on Darwin in a bundle/shared library. // See #2458 and http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man7/environ.7.html #include <crt_externs.h> -- GitLab