Skip to content
Snippets Groups Projects
Commit 004b1b10 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Bump the default min supported mac version to 12.0

For Synchronet "stuff", we can trivially change this, but some work
needs to be done to enable Spidermonkey and Cryptlib to pick up the
chosen value.

JS should be fairly simple since it's a configure argument.  Cryptlib
is a bit trickier since it's in a patch.
parent e9778331
No related branches found
No related tags found
No related merge requests found
Pipeline #6176 passed
......@@ -34,7 +34,7 @@ ifneq ($(os),linux)
endif
endif
ifeq ($(os),darwin)
JS_CONFIGURE_ARGS += '--enable-macos-target=10.11'
JS_CONFIGURE_ARGS += '--enable-macos-target=12.0'
endif
# Blacklist some machines...
......
......@@ -5,7 +5,7 @@
case $OSNAME in
'Darwin')
- CCARGS="$CCARGS -fPIC -fno-common" ;;
+ CCARGS="$CCARGS -fPIC -fno-common -mmacosx-version-min=10.5" ;;
+ CCARGS="$CCARGS -fPIC -fno-common -mmacosx-version-min=12.0" ;;
'CYGWIN_NT-5.0'|'CYGWIN_NT-5.1'|'CYGWIN_NT-6.1')
;;
......@@ -369,7 +369,7 @@ ifeq ($(os),haiku)
CFLAGS += -D__unix__ -DNEEDS_FORKPTY
endif
ifeq ($(os),darwin)
MIN_MAC_OSX_VERSION ?= 10.11
MIN_MAC_OSX_VERSION ?= 12.0
CFLAGS += -D__unix__ -fno-common -D__DARWIN__
CFLAGS += -mmacosx-version-min=$(MIN_MAC_OSX_VERSION)
LDFLAGS += -mmacosx-version-min=$(MIN_MAC_OSX_VERSION)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment