Fix MacOS file case in include

<corefoundation/corefoundation.h>
should be
<CoreFoundation/CoreFoundation.h>

Many MacOS FS are case insensitives, but not all, so we must use
the correct case.

Issue detected by the MacPorts buildbot : https://trac.macports.org/ticket/56490
This commit is contained in:
Thomas Bernard
2018-05-15 11:28:53 +02:00
parent 5865be3383
commit d4746ea72e
3 changed files with 3 additions and 3 deletions

View File

@@ -78,7 +78,7 @@
#elif defined (__MINT__)
#include <mint/osbind.h>
#elif defined(__macosx__)
#import <corefoundation/corefoundation.h>
#import <CoreFoundation/CoreFoundation.h>
#import <sys/param.h>
#elif defined(__FreeBSD__)
#include <sys/param.h>