diff options
author | tsutsui <tsutsui@pkgsrc.org> | 2018-07-14 17:12:56 +0000 |
---|---|---|
committer | tsutsui <tsutsui@pkgsrc.org> | 2018-07-14 17:12:56 +0000 |
commit | dbdd4efdc4f85eea44b6725654273b3de3909de4 (patch) | |
tree | 2a711245946c9e6d9ca4df930604c3d3bb0daa44 /audio | |
parent | baf854a6c2343520803d8714653f4367c0932449 (diff) | |
download | pkgsrc-dbdd4efdc4f85eea44b6725654273b3de3909de4.tar.gz |
mpg123: fix mpg123-pulse build failure on NetBSD/i386 8.0_RC2.
Fixes PR pkg/53433 by disabling x86 asm that causes text relocations
in libmpg123.so. Ok'ed by martin@.
Bump PKGREVISION.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/mpg123/Makefile | 4 | ||||
-rw-r--r-- | audio/mpg123/options.mk | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/audio/mpg123/Makefile b/audio/mpg123/Makefile index 157e790610d..b7d7bb87697 100644 --- a/audio/mpg123/Makefile +++ b/audio/mpg123/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.56 2018/05/22 22:50:25 jmcneill Exp $ +# $NetBSD: Makefile,v 1.57 2018/07/14 17:12:56 tsutsui Exp $ PKGNAME= ${DISTNAME:C/[^[:alnum:]]*//} -PKGREVISION= 1 +PKGREVISION= 2 COMMENT= MPEG layer 1, 2, and 3 audio player PKGCONFIG_OVERRIDE+= libmpg123.pc.in diff --git a/audio/mpg123/options.mk b/audio/mpg123/options.mk index 14594d297fc..b14ab585a8f 100644 --- a/audio/mpg123/options.mk +++ b/audio/mpg123/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2018/05/22 22:50:25 jmcneill Exp $ +# $NetBSD: options.mk,v 1.5 2018/07/14 17:12:56 tsutsui Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.mpg123 PKG_OPTIONS_OPTIONAL_GROUPS= fpu @@ -9,7 +9,8 @@ PKG_SUGGESTED_OPTIONS+= mpg123-fifo .if (${MACHINE_ARCH} == "i386") . if empty(MACHINE_PLATFORM:MDarwin-11.*-i386) && \ - empty(MACHINE_PLATFORM:MSunOS-*) + empty(MACHINE_PLATFORM:MSunOS-*) && \ + empty(MACHINE_PLATFORM:MNetBSD-[89]*-i386) PKG_OPTIONS_GROUP.fpu= mpg123-x86-dither mpg123-with-fpu PKG_SUGGESTED_OPTIONS+= mpg123-x86-dither . else |