diff options
author | tron <tron@pkgsrc.org> | 2011-07-20 23:41:12 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2011-07-20 23:41:12 +0000 |
commit | 271297c96c9060a68940874c89f41cb4e36b0857 (patch) | |
tree | ceb4b3cbb6b86615fa30e434acedce87d7f0f596 /editors | |
parent | d2551b924574b287e92420a0094e863cdbbbd703 (diff) | |
download | pkgsrc-271297c96c9060a68940874c89f41cb4e36b0857.tar.gz |
Build this package without optimization if GCC 4.5.* is used under
NetBSD/i386. This stops "temacs" from dumping core.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/emacs22/hacks.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/editors/emacs22/hacks.mk b/editors/emacs22/hacks.mk new file mode 100644 index 00000000000..0216de6f684 --- /dev/null +++ b/editors/emacs22/hacks.mk @@ -0,0 +1,19 @@ +# $NetBSD: hacks.mk,v 1.4 2011/07/20 23:41:12 tron Exp $ + +.if !defined(EMACS_HACKS_MK) +EMACS_HACKS_MK= defined + +.include "../../mk/compiler.mk" + +### [ Wed Jul 20 23:40:49 UTC 2011 : tron ] +### On NetBSD/i386, gcc optimisation, at least for version 4.5.3 produces a +### "temacs" binary which segfaults. +### +.if !empty(MACHINE_PLATFORM:MNetBSD-*-i386) +. if !empty(CC_VERSION:Mgcc-4.5.*) +PKG_HACKS+= optimisation +BUILDLINK_TRANSFORM+= rename:-O[0-9]*:-O0 +. endif +.endif + +.endif # EMACS_HACKS_MK |