Case-sensitivity header filename issue

This commit is contained in:
Ariel Abreu 2020-08-31 19:10:11 -04:00
parent a44c7a2ae9
commit 277af337cb
No known key found for this signature in database
GPG Key ID: ECF8C2B9E8AD3E6B
5 changed files with 21 additions and 0 deletions

View File

@ -39,7 +39,11 @@
#import "JSVirtualMachineInternal.h"
#import "JSWrapperMap.h"
#import "JavaScriptCore.h"
#ifdef DARLING
#import "ObjCRuntimeExtras.h"
#else
#import "ObjcRuntimeExtras.h"
#endif
#import "StrongInlines.h"
#ifdef DARLING_NONUNIFIED_BUILD
#include "JSScriptInternal.h"

View File

@ -35,7 +35,11 @@
#import "JSValueInternal.h"
#import "JSWeakValue.h"
#import "WeakHandleOwner.h"
#ifdef DARLING
#import "ObjCRuntimeExtras.h"
#else
#import "ObjcRuntimeExtras.h"
#endif
#import "JSCInlines.h"
#import <wtf/NeverDestroyed.h>

View File

@ -36,7 +36,11 @@
#import "JSValueInternal.h"
#import "JSValuePrivate.h"
#import "JSWrapperMap.h"
#ifdef DARLING
#import "ObjCRuntimeExtras.h"
#else
#import "ObjcRuntimeExtras.h"
#endif
#import "JSCInlines.h"
#import "JSCJSValue.h"
#import "Strong.h"

View File

@ -35,7 +35,11 @@
#import "JSContextInternal.h"
#import "JSWrapperMap.h"
#import "ObjCCallbackFunction.h"
#ifdef DARLING
#import "ObjCRuntimeExtras.h"
#else
#import "ObjcRuntimeExtras.h"
#endif
#import "ObjectConstructor.h"
#import "WeakGCMap.h"
#import "WeakGCMapInlines.h"

View File

@ -37,7 +37,12 @@
#import "JSWrapperMap.h"
#import "JSValueInternal.h"
#import "ObjCCallbackFunction.h"
#ifdef DARLING
// ugh, Apple with their stupid case-insensitivity
#import "ObjCRuntimeExtras.h"
#else
#import "ObjcRuntimeExtras.h"
#endif
#import "StructureInlines.h"
#import <objc/runtime.h>
#import <wtf/RetainPtr.h>