Disable assembler support on x86_64 systems because it breaks the build
of a shared version of the library.
This commit is contained in:
parent
84bcef407c
commit
0684bfe706
1 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.14 2008/12/18 16:19:07 bjs Exp $
|
||||
# $NetBSD: Makefile,v 1.15 2008/12/20 11:57:29 tron Exp $
|
||||
|
||||
SNAPSHOT_DATE= 20081217
|
||||
|
||||
|
@ -20,9 +20,10 @@ PKG_DESTDIR_SUPPORT= user-destdir
|
|||
CFLAGS+= -DHAVE_STDLIB_H
|
||||
.endif
|
||||
|
||||
|
||||
.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64"
|
||||
.if ${MACHINE_ARCH} == "i386"
|
||||
BUILD_DEPENDS+= yasm>=0.4.0:../../devel/yasm
|
||||
.elif ${MACHINE_ARCH} == "x86_64"
|
||||
CONFIGURE_ARGS+= --disable-asm
|
||||
.endif
|
||||
|
||||
USE_TOOLS+= gmake
|
||||
|
|
Loading…
Reference in a new issue