diff options
author | kristerw <kristerw@pkgsrc.org> | 2004-03-25 22:28:12 +0000 |
---|---|---|
committer | kristerw <kristerw@pkgsrc.org> | 2004-03-25 22:28:12 +0000 |
commit | 263e16c62766510318d62ac598bc1416097f523c (patch) | |
tree | a96422d1f7b2a60ea7e6774ae1e26f6f39344aa7 | |
parent | 919b2590209b245b19b602ec40c6ea69a10f4946 (diff) | |
download | pkgsrc-263e16c62766510318d62ac598bc1416097f523c.tar.gz |
It is not only SunOS that need -fno-zero-initialized-in-bss when
using gcc 3. Add this flag for all configurations.
Bump PKGREVISION.
-rw-r--r-- | editors/emacs/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/editors/emacs/Makefile b/editors/emacs/Makefile index 0237aa0c2fc..b8f0589036c 100644 --- a/editors/emacs/Makefile +++ b/editors/emacs/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.69 2004/03/20 17:58:56 bouyer Exp $ +# $NetBSD: Makefile,v 1.70 2004/03/25 22:28:12 kristerw Exp $ # FreeBSD Id: Makefile,v 1.30 1997/12/14 02:03:53 asami Exp DISTNAME= emacs-21.3 -PKGREVISION= 3 +PKGREVISION= 4 CATEGORIES= editors MASTER_SITES= ${MASTER_SITE_GNU:=emacs/} @@ -55,7 +55,7 @@ LDFLAGS+= -Wl,-z,nocombreloc .endif .include "../../mk/compiler.mk" -.if ((${OPSYS} == "SunOS") && !empty(CC_VERSION:Mgcc-3.*)) +.if !empty(CC_VERSION:Mgcc-3.*) CFLAGS+= -fno-zero-initialized-in-bss .endif |