From 7e79fd6e6145510ef6eb919d45fed1f89b4e4f9b Mon Sep 17 00:00:00 2001 From: Donovan Watteau Date: Wed, 3 Feb 2021 21:25:56 +0100 Subject: [PATCH] CREATE-PROJECT: Include CommonDigest.h for macOS, not CommonCrypto should be used for CC_MD5() on macOS. Fixes the build on Leopard. --- devtools/create_project/xcode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/devtools/create_project/xcode.cpp b/devtools/create_project/xcode.cpp index c400d246c08..ddb5bb72ad9 100644 --- a/devtools/create_project/xcode.cpp +++ b/devtools/create_project/xcode.cpp @@ -29,7 +29,7 @@ #ifdef MACOSX #include #include -#include +#include #endif namespace CreateProjectTool {