summaryrefslogtreecommitdiff
path: root/devel/SDL
diff options
context:
space:
mode:
authortron <tron>2009-10-23 08:35:20 +0000
committertron <tron>2009-10-23 08:35:20 +0000
commit1951473c89ed421823246f3e34bec2016003277a (patch)
tree8c5a22a79c5f76b01d5f6610d62a1ee58b7ddf91 /devel/SDL
parent8451217236ed4b128335c201f03e8267a1f01e72 (diff)
downloadpkgsrc-1951473c89ed421823246f3e34bec2016003277a.tar.gz
Remove work around for build problems under Mac OS X Snow Leopard which
is no longer necessary.
Diffstat (limited to 'devel/SDL')
-rw-r--r--devel/SDL/hacks.mk24
1 files changed, 0 insertions, 24 deletions
diff --git a/devel/SDL/hacks.mk b/devel/SDL/hacks.mk
deleted file mode 100644
index 0fc5752ee3f..00000000000
--- a/devel/SDL/hacks.mk
+++ /dev/null
@@ -1,24 +0,0 @@
-# $NetBSD: hacks.mk,v 1.1 2009/09/13 15:51:47 tron Exp $
-
-.if !defined(SDL_HACKS_MK)
-SDL_HACKS_MK= defined
-
-.include "../../mk/bsd.fast.prefs.mk"
-
-# SDL doesn't build with the API's provided by Mac OS X Snow Leopard:
-#
-# http://www.mail-archive.com/fink-users@lists.sourceforge.net/msg30617.html
-#
-# Work around that by using the Leopard SDK which is part of Xcode.
-
-XCODE_LEOPARD_SDK= /Developer/SDKs/MacOSX10.5.sdk
-
-.if !empty(MACHINE_PLATFORM:MDarwin-??.*-*) && \
- exists(/Developer/SDKs/MacOSX10.5.sdk)
-PKG_HACKS+= sdl-snow-leopard
-
-CFLAGS+= -mmacosx-version-min=10.5 -isysroot ${XCODE_LEOPARD_SDK}
-LDFLAGS+= -mmacosx-version-min=10.5 -Wl,-syslibroot,${XCODE_LEOPARD_SDK}
-.endif
-
-.endif # SDL_HACKS_MK