summaryrefslogtreecommitdiff
path: root/editors/xemacs
diff options
context:
space:
mode:
authorhauke <hauke@pkgsrc.org>2016-10-31 13:30:07 +0000
committerhauke <hauke@pkgsrc.org>2016-10-31 13:30:07 +0000
commit6703cdb47c9c6657579aa9c54c677a6d00bbd8ee (patch)
tree595c263cbaac65b2453a958618af66611f859c3d /editors/xemacs
parentbdada1a0529a0345f5e957621da463540012ef77 (diff)
downloadpkgsrc-6703cdb47c9c6657579aa9c54c677a6d00bbd8ee.tar.gz
Re-add editors/xemacs/hacks.mk --
gcc 5 builtins collide with src/gmalloc.c's calloc(), which results in 'xemacs -vanilla' busy-looping during the build. Joerg suggested building with -fno-builtin, see <http://mail-index.netbsd.org/tech-toolchain/2016/10/28/msg002820.html> ff.
Diffstat (limited to 'editors/xemacs')
-rw-r--r--editors/xemacs/hacks.mk17
1 files changed, 17 insertions, 0 deletions
diff --git a/editors/xemacs/hacks.mk b/editors/xemacs/hacks.mk
new file mode 100644
index 00000000000..bb34808bcb5
--- /dev/null
+++ b/editors/xemacs/hacks.mk
@@ -0,0 +1,17 @@
+# $NetBSD: hacks.mk,v 1.5 2016/10/31 13:30:07 hauke Exp $
+
+.if !defined(XEMACS_HACKS_MK)
+XEMACS_HACKS_MK= defined
+
+.include "../../mk/compiler.mk"
+
+### [Fri Oct 28 10:00:00 UTC 2016 : hauke]
+### gcc 5 builtins collide with src/gmalloc.c's calloc(), which
+### results in 'xemacs -vanilla' busy-looping during the build.
+###
+.if !empty(PKGSRC_COMPILER:Mgcc) && !empty(CC_VERSION:Mgcc-5.[0-9]*)
+PKG_HACKS+= gcc5-malloc-builtin-conflict
+CFLAGS+= -fno-builtin
+.endif
+
+.endif # XEMACS_HACKS_MK