summaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorjoerg <joerg>2006-06-21 13:22:39 +0000
committerjoerg <joerg>2006-06-21 13:22:39 +0000
commit3f9327cb7ffd50f0aa9123de8bbc8e8bd6dcab5d (patch)
tree3434bfbdb4f3458fed1a83d3700a4d002412375d /games
parent88dc81518cfecf9a5026e174b9f96fca4d124d84 (diff)
downloadpkgsrc-3f9327cb7ffd50f0aa9123de8bbc8e8bd6dcab5d.tar.gz
Disable propolice on DragonFly to avoid ICE.
Diffstat (limited to 'games')
-rw-r--r--games/enigma/hacks.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/games/enigma/hacks.mk b/games/enigma/hacks.mk
new file mode 100644
index 00000000000..4537a21dd75
--- /dev/null
+++ b/games/enigma/hacks.mk
@@ -0,0 +1,18 @@
+# $NetBSD: hacks.mk,v 1.1 2006/06/21 13:22:39 joerg Exp $
+
+.include "../../mk/bsd.prefs.mk"
+
+.if ${OPSYS} == "DragonFly" && ${PKGSRC_COMPILER} == "gcc"
+#
+# Workaround an ICE in the stack-smashing protection in GCC 3.4.x.
+#
+.if !defined(HAS_PROPOLICE)
+HAS_PROPOLICE!= ( ${CC} -v 2>&1 | ${GREP} 'propolice' ) 2>/dev/null || echo no
+MAKEVARS+= HAS_PROPOLICE
+.endif
+
+.if ${HAS_PROPOLICE} != "no"
+CFLAGS+= -fno-stack-protector
+CXXFLAGS+= -fno-stack-protector
+.endif
+.endif