summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorjoerg <joerg>2006-09-19 19:29:30 +0000
committerjoerg <joerg>2006-09-19 19:29:30 +0000
commit1f7f3d8eebfaa68d019b5ef6e72b4d48e2e196dd (patch)
treec922fd777ca8f7f55ee703d2de404a7ee08c6392 /net
parent0fd10d83fb20518d4ed814d77c0b9164f5aa0d71 (diff)
downloadpkgsrc-1f7f3d8eebfaa68d019b5ef6e72b4d48e2e196dd.tar.gz
Workaround for propolice ICE on DragonFly.
Diffstat (limited to 'net')
-rw-r--r--net/openh323/hacks.mk18
1 files changed, 18 insertions, 0 deletions
diff --git a/net/openh323/hacks.mk b/net/openh323/hacks.mk
new file mode 100644
index 00000000000..271c4249808
--- /dev/null
+++ b/net/openh323/hacks.mk
@@ -0,0 +1,18 @@
+# $NetBSD: hacks.mk,v 1.1 2006/09/19 19:29:30 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