blob: ac542c846faad9ee1f2b620df291a3b96e981374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# $NetBSD: options.mk,v 1.4 2012/10/21 10:27:14 cheusov Exp $
#
PKG_OPTIONS_VAR= PKG_OPTIONS.mpg123
PKG_SUPPORTED_OPTIONS= inet6 debug
PKG_SUGGESTED_OPTIONS= inet6
.include "../../mk/bsd.fast.prefs.mk"
.if ${MACHINE_ARCH} == "powerpc" || \
(${MACHINE_ARCH} == "i386" && ${OPSYS} != "SunOS")
PKG_SUPPORTED_OPTIONS+= simd
.elif !empty(MACHINE_ARCH:Marm*)
PKG_SUPPORTED_OPTIONS+= mpg123-arm-fixed64
.endif
PKG_SUGGESTED_OPTIONS= ${PKG_SUPPORTED_OPTIONS:Ndebug}
.include "../../mk/bsd.options.mk"
SIMD_CONFIGURE_ARGS.powerpc= altvec
SIMD_CONFIGURE_ARGS.i386= x86_dither
.if empty(PKG_OPTIONS:Minet6)
CONFIGURE_ARGS+= --with-ipv6=no
.endif
.if !empty(PKG_OPTIONS:Msimd)
CONFIGURE_ARGS+= --with-cpu=${SIMD_CONFIGURE_ARGS.${MACHINE_ARCH}}
.elif !empty(PKG_OPTIONS:Mmpg123-arm-fixed64)
CONFIGURE_ARGS+= --with-cpu=generic_nofpu
.else
CONFIGURE_ARGS+= --with-cpu=generic_fpu
.endif
.if !empty(PKG_OPTIONS:Mdebug)
CONFIGURE_ARGS+= --enable-debug=yes
.else
CONFIGURE_ARGS+= --enable-debug=no
.endif
|