summaryrefslogtreecommitdiff
path: root/textproc/jade
diff options
context:
space:
mode:
authortv <tv>2005-01-25 20:26:06 +0000
committertv <tv>2005-01-25 20:26:06 +0000
commit67ad756d0cd64e200791b31143a92b9de17e1e88 (patch)
tree54e44f55d1dba2183245b3a112b780a37a09217a /textproc/jade
parentf830f02161050d3ff396bca9eba56270b4e510f0 (diff)
downloadpkgsrc-67ad756d0cd64e200791b31143a92b9de17e1e88.tar.gz
Add GCC_REQD for Interix -- it's currently generating broken C++ global
ctors and dtors.
Diffstat (limited to 'textproc/jade')
-rw-r--r--textproc/jade/hacks.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/textproc/jade/hacks.mk b/textproc/jade/hacks.mk
new file mode 100644
index 00000000000..5d904d51402
--- /dev/null
+++ b/textproc/jade/hacks.mk
@@ -0,0 +1,14 @@
+# $NetBSD: hacks.mk,v 1.1 2005/01/25 20:26:06 tv Exp $
+
+.ifndef JADE_HACKS_MK
+JADE_HACKS_MK= # defined
+
+### [Tue Jan 25 20:25:41 UTC 2005 : tv]
+### Interix system-supplied g++ 3.3 is generating broken global ctors/dtors
+###
+.if ${OPSYS} == "Interix"
+PKG_HACKS+= g++-broken-globals
+GCC_REQD+= 3.3.4
+.endif
+
+.endif