From e53e1e226a8fa0a1b06650fa77cc9976e0180284 Mon Sep 17 00:00:00 2001 From: Link Dupont Date: Fri, 2 Feb 2024 21:58:17 -0500 Subject: [PATCH] Fix to include correct Availability.h header The OS X SDK includes a file named "Availability.h". This file defines the macro __MAC_OS_X_VERSION_MAX_ALLOWED. However, the file was being imported as "availability.h". On case-insensitive, case-preserving filesystems, this name discrepancy is not a problem, but when compiling on a case-sensitive filesystem, the compiler fails to find a file named "availability.h". Include the correct, case-sensitive filename instead. Signed-off-by: Link Dupont --- cli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli.c b/cli.c index dd4f710..7557512 100644 --- a/cli.c +++ b/cli.c @@ -5,7 +5,7 @@ #include #include -#include +#include #include #include "cli.h"