diff options
author | rillig <rillig@pkgsrc.org> | 2005-09-24 21:00:25 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2005-09-24 21:00:25 +0000 |
commit | 2aa73d1728c49be6260eea70852a28c55acc00bb (patch) | |
tree | db51b9566bb34656e6d4a7600b7677706bb5c657 /wm/windowmaker | |
parent | 85a52e82d7e0c12fa2b2692ab2887a615acdda33 (diff) | |
download | pkgsrc-2aa73d1728c49be6260eea70852a28c55acc00bb.tar.gz |
Assembler code is disabled for anything except MACHINE_ARCH=="i386". This
fixes the build on x86_64. Bumped PKGREVISION to 1.
Diffstat (limited to 'wm/windowmaker')
-rw-r--r-- | wm/windowmaker/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/wm/windowmaker/Makefile b/wm/windowmaker/Makefile index ca44e992548..a0dcc093296 100644 --- a/wm/windowmaker/Makefile +++ b/wm/windowmaker/Makefile @@ -1,7 +1,8 @@ -# $NetBSD: Makefile,v 1.55 2005/07/09 14:57:08 adam Exp $ +# $NetBSD: Makefile,v 1.56 2005/09/24 21:00:25 rillig Exp $ DISTNAME= WindowMaker-0.92.0 PKGNAME= ${DISTNAME:S/WindowMaker/windowmaker/} +PKGREVISION= 1 CATEGORIES= x11 wm windowmaker MASTER_SITES= ftp://ftp.windowmaker.org/pub/source/release/ \ ftp://ftp.ics.es.osaka-u.ac.jp/mirrors/WindowMaker/source/release/ @@ -22,6 +23,9 @@ CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFBASEDIR} CONFIGURE_ARGS+= --with-nlsdir=${PREFIX}/${PKGLOCALEDIR}/locale CONFIGURE_ENV+= LINGUAS=yes CONFIGURE_ENV+= CPP_PATH="${CPP}" +.if ${MACHINE_ARCH} != "i386" +CONFIGURE_ENV+= ac_cv_c_inline_asm=no +.endif INSTALL_TARGET= install-strip |