diff options
author | minskim <minskim@pkgsrc.org> | 2007-06-21 00:58:04 +0000 |
---|---|---|
committer | minskim <minskim@pkgsrc.org> | 2007-06-21 00:58:04 +0000 |
commit | 6a12dd1538c74616aedd900e7812137dde22a59e (patch) | |
tree | 644a4b2f115627637864f3b73e4ea91275b4b445 /wm/windowmaker/Makefile | |
parent | 81862f0b41a1ac488fc789fac10c5ceeafd14380 (diff) | |
download | pkgsrc-6a12dd1538c74616aedd900e7812137dde22a59e.tar.gz |
If gcc-4 is used, disable inline assembly until GCC Bug #25221 is fixed.
Previously, it was done in Makefile for gcc-4.1 only. Now it covers
gcc-4.0.* and is located in the proper place (hacks.mk).
This fixes PR 36460.
Diffstat (limited to 'wm/windowmaker/Makefile')
-rw-r--r-- | wm/windowmaker/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wm/windowmaker/Makefile b/wm/windowmaker/Makefile index 35deac19181..6acef36bfc8 100644 --- a/wm/windowmaker/Makefile +++ b/wm/windowmaker/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.74 2007/02/03 02:59:22 joerg Exp $ +# $NetBSD: Makefile,v 1.75 2007/06/21 00:58:04 minskim Exp $ DISTNAME= WindowMaker-0.92.0 PKGNAME= ${DISTNAME:S/WindowMaker/windowmaker/} @@ -30,7 +30,7 @@ INSTALL_TARGET= install-strip .include "../../mk/compiler.mk" -.if ${MACHINE_ARCH} != "i386" || !empty(CC_VERSION:Mgcc-4.1.*) +.if ${MACHINE_ARCH} != "i386" CONFIGURE_ENV+= ac_cv_c_inline_asm=no .endif |