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
No known key found for this signature in database
GPG Key ID: 0FF11B67A5C0863C
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>

View File

@ -35,7 +35,7 @@
#include <direct.h>
#endif
#elif defined(__macosx__)
#import <corefoundation/corefoundation.h>
#import <CoreFoundation/CoreFoundation.h>
#import <sys/param.h>
#elif defined(__FreeBSD__)
#include <sys/param.h>

View File

@ -46,7 +46,7 @@
#endif
#if defined(__macosx__)
#import <corefoundation/corefoundation.h>
#import <CoreFoundation/CoreFoundation.h>
#import <sys/param.h>
#endif