Fixes PR pkg/53433 by disabling x86 asm that causes text relocations in libmpg123.so. Ok'ed by martin@. Bump PKGREVISION.
55 lines
1.7 KiB
Makefile
55 lines
1.7 KiB
Makefile
# $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
|
|
PKG_SUPPORTED_OPTIONS= mpg123-fifo
|
|
PKG_SUGGESTED_OPTIONS+= mpg123-fifo
|
|
|
|
.include "../../mk/bsd.fast.prefs.mk"
|
|
|
|
.if (${MACHINE_ARCH} == "i386")
|
|
. if empty(MACHINE_PLATFORM:MDarwin-11.*-i386) && \
|
|
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
|
|
PKG_OPTIONS_GROUP.fpu= mpg123-with-fpu
|
|
PKG_SUGGESTED_OPTIONS+= mpg123-with-fpu
|
|
. endif
|
|
.elif (${MACHINE_ARCH} == "arm") || (${MACHINE_ARCH} == "arm32")
|
|
PKG_OPTIONS_GROUP.fpu= mpg123-with-fpu
|
|
.elif (${MACHINE_ARCH} == "aarch64")
|
|
PKG_OPTIONS_GROUP.fpu= mpg123-neon64 mpg123-aarch64
|
|
PKG_SUGGESTED_OPTIONS+= mpg123-aarch64
|
|
.elif (${MACHINE_ARCH} == "powerpc")
|
|
PKG_OPTIONS_GROUP.fpu= mpg123-altivec mpg123-with-fpu
|
|
PKG_SUGGESTED_OPTIONS+= mpg123-altivec
|
|
.else
|
|
PKG_OPTIONS_GROUP.fpu= mpg123-with-fpu
|
|
PKG_SUGGESTED_OPTIONS+= mpg123-with-fpu
|
|
.endif
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mmpg123-with-fpu)
|
|
CONFIGURE_ARGS+= --with-cpu=generic_fpu
|
|
.elif !empty(PKG_OPTIONS:Mmpg123-altivec)
|
|
CONFIGURE_ARGS+= --with-cpu=altivec
|
|
.elif !empty(PKG_OPTIONS:Mmpg123-x86-dither)
|
|
CONFIGURE_ARGS+= --with-cpu=x86_dither
|
|
.elif !empty(PKG_OPTIONS:Mmpg123-altivec)
|
|
CONFIGURE_ARGS+= --with-cpu=altivec
|
|
.elif !empty(PKG_OPTIONS:Mmpg123-neon64)
|
|
CONFIGURE_ARGS+= --with-cpu=neon64
|
|
.elif !empty(PKG_OPTIONS:Mmpg123-aarch64)
|
|
CONFIGURE_ARGS+= --with-cup=aarch64
|
|
.else
|
|
CONFIGURE_ARGS+= --with-cpu=generic_nofpu
|
|
.endif
|
|
|
|
.if !empty(PKG_OPTIONS:Mmpg123-fifo)
|
|
CONFIGURE_ARGS+= --enable-fifo=yes
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-fifo=no
|
|
.endif
|