summaryrefslogtreecommitdiff
path: root/devel/pwlib
diff options
context:
space:
mode:
authorjoerg <joerg>2007-02-19 22:10:42 +0000
committerjoerg <joerg>2007-02-19 22:10:42 +0000
commit824d8a93ec6bba1fe9183daa4e898dbfe7068407 (patch)
tree273cd5c6616330dcb2f345363d87d2614a827e69 /devel/pwlib
parent57c03e22fe200805b802fa4e5509e63b55190887 (diff)
downloadpkgsrc-824d8a93ec6bba1fe9183daa4e898dbfe7068407.tar.gz
Retire propolice hack on DragonFly as the system compiler was fixed
and the changes pulled up to all release branches.
Diffstat (limited to 'devel/pwlib')
-rw-r--r--devel/pwlib/hacks.mk18
1 files changed, 0 insertions, 18 deletions
diff --git a/devel/pwlib/hacks.mk b/devel/pwlib/hacks.mk
deleted file mode 100644
index 202bac6cea9..00000000000
--- a/devel/pwlib/hacks.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: hacks.mk,v 1.1 2006/08/26 16:04:10 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