diff options
author | tv <tv> | 2005-01-25 20:26:06 +0000 |
---|---|---|
committer | tv <tv> | 2005-01-25 20:26:06 +0000 |
commit | 74c0d7b81910b9541516e57c89bdbbe750c95470 (patch) | |
tree | 54e44f55d1dba2183245b3a112b780a37a09217a /textproc | |
parent | e9c1fa604e42cd05582a8c1b6c70cc643b8f7351 (diff) | |
download | pkgsrc-74c0d7b81910b9541516e57c89bdbbe750c95470.tar.gz |
Add GCC_REQD for Interix -- it's currently generating broken C++ global
ctors and dtors.
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/jade/hacks.mk | 14 |
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 |