diff options
author | jlam <jlam> | 2004-01-25 16:14:15 +0000 |
---|---|---|
committer | jlam <jlam> | 2004-01-25 16:14:15 +0000 |
commit | 0126f05d9e90862a7f8b57097728874a612d2453 (patch) | |
tree | 1c8fba648e1e1df537fc5d2c4d64eb51ef7b337a /audio/flac | |
parent | 5558d224f38fe19019aaff07df32806f5801a2e1 (diff) | |
download | pkgsrc-0126f05d9e90862a7f8b57097728874a612d2453.tar.gz |
bl3ify and fix issue with MIPSpro compiler and this package by stripping
"-O3" from the compiler options.
Diffstat (limited to 'audio/flac')
-rw-r--r-- | audio/flac/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/audio/flac/Makefile b/audio/flac/Makefile index d6235ff9d84..10e262a04cb 100644 --- a/audio/flac/Makefile +++ b/audio/flac/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/01/22 07:15:00 grant Exp $ +# $NetBSD: Makefile,v 1.17 2004/01/25 16:14:15 jlam Exp $ # DISTNAME= flac-1.1.0 @@ -17,7 +17,7 @@ BUILD_DEPENDS+= nasm>=0.98:../../devel/nasm .endif WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} -USE_BUILDLINK2= yes +USE_BUILDLINK3= yes USE_GNU_TOOLS+= make GNU_CONFIGURE= yes CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no" @@ -25,5 +25,12 @@ CONFIGURE_ENV+= ac_cv_path_XMMS_CONFIG="no" USE_LIBTOOL= yes LIBTOOL_OVERRIDE= ${WRKSRC}/libtool -.include "../../audio/libogg/buildlink2.mk" +# This version of flac doesn't seem to build correctly with -O3 using +# the MIPSpro compiler. +# +.if defined(USE_MIPSPRO) +BUILDLINK_TRANSFORM+= S:-O3: +.endif + +.include "../../audio/libogg/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |