summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2006-09-24 20:02:42 +0000
committerjoerg <joerg@pkgsrc.org>2006-09-24 20:02:42 +0000
commit4d9080f5ac0ce7b9591713ebd6aacc34c18cac0a (patch)
treead46e6032d365e63abe22c97d50290f3a0038598 /net
parent7334d345a08bd53aa2883883dcb4e8c49861202e (diff)
downloadpkgsrc-4d9080f5ac0ce7b9591713ebd6aacc34c18cac0a.tar.gz
Disable propolice on DragonFly to work around ICE.
Diffstat (limited to 'net')
-rw-r--r--net/gnugk/hacks.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/gnugk/hacks.mk b/net/gnugk/hacks.mk
new file mode 100644
index 00000000000..0862243fbda
--- /dev/null
+++ b/net/gnugk/hacks.mk
@@ -0,0 +1,18 @@
+# $NetBSD: hacks.mk,v 1.1 2006/09/24 20:02:42 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