summaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authortron <tron>2011-07-20 23:41:12 +0000
committertron <tron>2011-07-20 23:41:12 +0000
commit056e247b162758e009a6f248730b6818c4930735 (patch)
treeceb4b3cbb6b86615fa30e434acedce87d7f0f596 /editors
parentf21b9ac9235791d73dbcc562690a2ecc80eddfb9 (diff)
downloadpkgsrc-056e247b162758e009a6f248730b6818c4930735.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.mk19
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