diff options
author | xtraeme <xtraeme> | 2005-09-04 02:37:02 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2005-09-04 02:37:02 +0000 |
commit | 4abd7a07c16bab6391e22ec10b7c1776ff182e60 (patch) | |
tree | 3b3b855c677ab7ce3802447688ef88e881953bda /audio/lame | |
parent | 00804b307b1a67340aad8593f73769550b576bbd (diff) | |
download | pkgsrc-4abd7a07c16bab6391e22ec10b7c1776ff182e60.tar.gz |
Do not depend on nasm in Solaris x86, it's known to fail.
Diffstat (limited to 'audio/lame')
-rw-r--r-- | audio/lame/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/lame/Makefile b/audio/lame/Makefile index 790a3fdcbe4..a14c8efe067 100644 --- a/audio/lame/Makefile +++ b/audio/lame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.50 2005/08/30 16:12:49 xtraeme Exp $ +# $NetBSD: Makefile,v 1.51 2005/09/04 02:37:02 xtraeme Exp $ # DISTNAME= lame-${VERS} @@ -40,7 +40,7 @@ CFLAGS+= -O2 -Wall -fomit-frame-pointer -ffast-math -funroll-loops \ -finline-functions -DFLOAT=double -DFLOAT_MAX=DBL_MAX .endif -.if ${MACHINE_ARCH} == "i386" +.if (${MACHINE_ARCH} == "i386" && ${OPSYS} != "SunOS") BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm CONFIGURE_ARGS+= --enable-nasm .endif |