summaryrefslogtreecommitdiff
path: root/net/libtorrent
diff options
context:
space:
mode:
authorjoerg <joerg>2005-11-17 18:54:15 +0000
committerjoerg <joerg>2005-11-17 18:54:15 +0000
commit44508306c924ace524497fe0c7def87d5287b816 (patch)
tree1e996d7ef66acf56a7d29343837014de4b854dfc /net/libtorrent
parent4f3097c8a38c35d6f799553c58ce077cdc819258 (diff)
downloadpkgsrc-44508306c924ace524497fe0c7def87d5287b816.tar.gz
Disable propolice on DragonFly, when available. It currently produces
an ICE. Fixes PR 31892.
Diffstat (limited to 'net/libtorrent')
-rw-r--r--net/libtorrent/hacks.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/net/libtorrent/hacks.mk b/net/libtorrent/hacks.mk
new file mode 100644
index 00000000000..099f078167a
--- /dev/null
+++ b/net/libtorrent/hacks.mk
@@ -0,0 +1,19 @@
+# $NetBSD: hacks.mk,v 1.1 2005/11/17 18:54:15 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