From 073ed036b2f587a38608038fd1b899f500258e75 Mon Sep 17 00:00:00 2001
From: Albert Graef <aggraef@gmail.com>
Date: Sat, 28 Jan 2017 11:19:59 +0100
Subject: [PATCH] Newer Xcode will complain if we compile for any target older
 than 10.4. Bumping the target to 10.4 hopefully gets rid of some annoying
 warnings when running make directly in pd/src on the Mac.

---
 pd/src/makefile.in | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pd/src/makefile.in b/pd/src/makefile.in
index 899b6cf3d..86e73de1e 100644
--- a/pd/src/makefile.in
+++ b/pd/src/makefile.in
@@ -2,7 +2,7 @@
 # support.  Its safe on other platforms since gcc only checks this env var on
 # Apple's gcc.  <hans@at.or.at>
 ifeq ($(shell uname -s),Darwin)
-export MACOSX_DEPLOYMENT_TARGET = 10.3
+export MACOSX_DEPLOYMENT_TARGET = 10.4
 endif
 
 VPATH = ../obj:./
-- 
GitLab