summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2007-01-15 19:34:43 +0000
committerjoerg <joerg@pkgsrc.org>2007-01-15 19:34:43 +0000
commit186960e626f8e80d32c3f160a2fce4ebedeb783f (patch)
treed86dd07bdc7443d6363807cdf7ed23c83cd5c2fe /net
parentd61b79ae9068c9ab512917f1575f87fefa4bdc7a (diff)
downloadpkgsrc-186960e626f8e80d32c3f160a2fce4ebedeb783f.tar.gz
Disable propolice on DragonFly for now.
Diffstat (limited to 'net')
-rw-r--r--net/ktorrent/hacks.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/ktorrent/hacks.mk b/net/ktorrent/hacks.mk
new file mode 100644
index 00000000000..bd7ef770069
--- /dev/null
+++ b/net/ktorrent/hacks.mk
@@ -0,0 +1,18 @@
+# $NetBSD: hacks.mk,v 1.1 2007/01/15 19:34:43 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