macos: Use newer MACOSX_DEPLOYMENT_TARGET

10.6 seems to still be supported on Mojave, but not 10.4
anymore.
This commit is contained in:
Michael Matz 2020-05-09 00:36:59 +02:00
parent 7b6931ed1f
commit 4cc27b816f

View File

@ -49,7 +49,7 @@ else
ifdef CONFIG_OSX ifdef CONFIG_OSX
NATIVE_TARGET = $(ARCH)-osx NATIVE_TARGET = $(ARCH)-osx
LDFLAGS += -flat_namespace -undefined warning LDFLAGS += -flat_namespace -undefined warning
export MACOSX_DEPLOYMENT_TARGET := 10.4 export MACOSX_DEPLOYMENT_TARGET := 10.6
endif endif
endif endif