summaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2007-02-19 22:10:42 +0000
committerjoerg <joerg@pkgsrc.org>2007-02-19 22:10:42 +0000
commitbba84c93daefce8a7be55d535516c1c47882ea92 (patch)
tree273cd5c6616330dcb2f345363d87d2614a827e69 /comms
parent21ea9576dae6523f65ed2a47d15787a3998a1922 (diff)
downloadpkgsrc-bba84c93daefce8a7be55d535516c1c47882ea92.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 'comms')
-rw-r--r--comms/hylafax/hacks.mk18
1 files changed, 0 insertions, 18 deletions
diff --git a/comms/hylafax/hacks.mk b/comms/hylafax/hacks.mk
deleted file mode 100644
index 8e87a4a61ba..00000000000
--- a/comms/hylafax/hacks.mk
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: hacks.mk,v 1.2 2006/10/01 14:00:12 rillig 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