2b68d50d8e
dumped binary crashes otherwise.
16 lines
345 B
Makefile
16 lines
345 B
Makefile
# $NetBSD: hacks.mk,v 1.7 2019/04/11 16:05:24 hauke Exp $
|
|
|
|
.if !defined(XEMACS_HACKS_MK)
|
|
XEMACS_HACKS_MK= defined
|
|
|
|
.include "../../mk/compiler.mk"
|
|
|
|
### Position-independent code does not rhyme well with
|
|
### dumped emacsen.
|
|
###
|
|
.if !empty(CC_VERSION:Mgcc-[6789].*)
|
|
PKG_HACKS+= disable-gcc-pie
|
|
CFLAGS+= -no-pie
|
|
.endif
|
|
|
|
.endif # XEMACS_HACKS_MK
|