From 6662e7fbf7d87bbaf4c265555443ddfa12c1108f Mon Sep 17 00:00:00 2001 From: jperkin Date: Thu, 12 Dec 2013 11:34:23 +0000 Subject: 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. --- lang/python27/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'lang') 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" -- cgit v1.2.3