From e1b7c55aa0df550edc39ea61a005087fd2009278 Mon Sep 17 00:00:00 2001 From: Raymond Toy <toy.raymond@gmail.com> Date: Sat, 21 May 2016 19:38:41 -0700 Subject: [PATCH] MAke min version for OSX be 10.6 Update compiler option to specify 10.6 as the min version. (I personally no longer have an version earlier than 10.11.) Fix ticket #19. --- src/lisp/Config.x86_darwin | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lisp/Config.x86_darwin b/src/lisp/Config.x86_darwin index 03324aac9..0c1640413 100644 --- a/src/lisp/Config.x86_darwin +++ b/src/lisp/Config.x86_darwin @@ -2,9 +2,9 @@ include Config.x86_common -# Compile code that will run on OSX 10.5 (Tiger). This only works if -# you have the 10.5 SDK available. -MIN_VER = -mmacosx-version-min=10.5 +# Compile code that will run on OSX 10.6. This only works if +# you have the SDK available. +MIN_VER = -mmacosx-version-min=10.6 CPPFLAGS += -DDARWIN $(MIN_VER) -m32 CFLAGS += -g3 -mtune=generic -- GitLab