mirror of https://github.com/bsnes-emu/bsnes.git
Fixed compilation issues under more recent Xcode versions
This commit is contained in:
parent
430b733da6
commit
7a9377de34
|
@ -86,7 +86,7 @@
|
|||
HFASSERT(byteRange.length > 0);
|
||||
HFRange displayedRange = [self entireDisplayedRange];
|
||||
HFRange intersection = HFIntersectionRange(displayedRange, byteRange);
|
||||
NSRect result;
|
||||
NSRect result = {{0,},};
|
||||
if (intersection.length > 0) {
|
||||
NSRange intersectionNSRange = NSMakeRange(ll2l(intersection.location - displayedRange.location), ll2l(intersection.length));
|
||||
if (intersectionNSRange.length > 0) {
|
||||
|
|
3
Makefile
3
Makefile
|
@ -46,8 +46,9 @@ LDFLAGS += -lc -lm
|
|||
endif
|
||||
|
||||
ifeq ($(PLATFORM),Darwin)
|
||||
SYSROOT := $(shell xcodebuild -sdk macosx -version Path 2> /dev/null)
|
||||
CFLAGS += -F/Library/Frameworks
|
||||
OCFLAGS += -x objective-c -fobjc-arc -Wno-deprecated-declarations -isysroot $(shell xcode-select -p)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX10.11.sdk -mmacosx-version-min=10.9
|
||||
OCFLAGS += -x objective-c -fobjc-arc -Wno-deprecated-declarations -isysroot $(SYSROOT) -mmacosx-version-min=10.9
|
||||
LDFLAGS += -framework AppKit -framework Carbon -framework QuartzCore
|
||||
SDL_LDFLAGS := -framework SDL
|
||||
endif
|
||||
|
|
Loading…
Reference in New Issue