diff options
Diffstat (limited to 'editors/emacs')
-rw-r--r-- | editors/emacs/Makefile.common | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/editors/emacs/Makefile.common b/editors/emacs/Makefile.common index 6271aa0c8d0..05880a9d53f 100644 --- a/editors/emacs/Makefile.common +++ b/editors/emacs/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.2 2005/06/30 10:12:35 markd Exp $ +# $NetBSD: Makefile.common,v 1.3 2005/10/14 08:59:50 hiramatsu Exp $ MASTER_SITES= ${MASTER_SITE_GNU:=emacs/} MAINTAINER= markd@NetBSD.org @@ -48,6 +48,11 @@ PLIST_SUBST+= FNS_EL="" PLIST_SUBST+= DOCTAIL="-${EMACSVERSION}.1" .endif +# Disable W^X. +.if ${OPSYS} == "OpenBSD" +LDFLAGS+= -Z +.endif + .include "../../mk/compiler.mk" .if !empty(CC_VERSION:Mgcc-3.*) CFLAGS+= -fno-zero-initialized-in-bss |