summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorjperkin <jperkin>2013-12-12 11:34:23 +0000
committerjperkin <jperkin>2013-12-12 11:34:23 +0000
commit6662e7fbf7d87bbaf4c265555443ddfa12c1108f (patch)
tree9500c8068c0631589f34039125380f421ddfc76b /lang
parent882b97fe64454babd4b08382bbd414bfc67a6a44 (diff)
downloadpkgsrc-6662e7fbf7d87bbaf4c265555443ddfa12c1108f.tar.gz
Search the SDK path on OSX, otherwise for Xcode 5 certain modules will not
be built, due to the headers not being installed in /usr/include by default.
Diffstat (limited to 'lang')
-rw-r--r--lang/python27/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/lang/python27/Makefile b/lang/python27/Makefile
index a6641cad6ba..e68e6bc2c25 100644
--- a/lang/python27/Makefile
+++ b/lang/python27/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2013/11/12 18:57:25 adam Exp $
+# $NetBSD: Makefile,v 1.33 2013/12/12 11:34:23 jperkin Exp $
.include "dist.mk"
@@ -114,6 +114,12 @@ PLIST.extra-so= yes
INSTALL_UNSTRIPPED= yes
.endif
+# For Xcode 5 we need to search the SDK path for headers, otherwise certain
+# modules will not be built.
+.if ${OPSYS} == "Darwin" && exists(${OSX_SDK_PATH}/usr/include)
+CFLAGS+= -I${OSX_SDK_PATH}/usr/include
+.endif
+
PLIST_VARS+= dll nis no-nis
.if ${OPSYS} == "IRIX"
. if ${ABI} == "64"