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-03 21:25:56 +01:00 committed by sluicebox
parent 93234d81e6
commit 7e79fd6e61

View File

@ -29,7 +29,7 @@
#ifdef MACOSX
#include <sstream>
#include <iomanip>
#include <CommonCrypto/CommonCrypto.h>
#include <CommonCrypto/CommonDigest.h>
#endif
namespace CreateProjectTool {