CREATE-PROJECT: Include CommonDigest.h for macOS, not CommonCrypto

<CommonCrypto/CommonDigest.h> should be used for CC_MD5() on macOS.

Fixes the build on Leopard.
This commit is contained in:
Donovan Watteau
2021-02-09 13:33:56 -08:00
committed by sluicebox
parent 93234d81e6
commit 7e79fd6e61
+1 -1
View File
@@ -29,7 +29,7 @@
#ifdef MACOSX
#include <sstream>
#include <iomanip>
#include <CommonCrypto/CommonCrypto.h>
#include <CommonCrypto/CommonDigest.h>
#endif
namespace CreateProjectTool {