blob: de23adaad69a3dad5500d5d8cc40ef2f3db66026 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# $NetBSD: available.mk,v 1.3 2012/12/02 11:03:51 cheusov Exp $
.include "../../mk/bsd.prefs.mk"
# At the moment VDPAU is available only for Linux, FreeBSD and
# [Open]Solaris. The following condition is here to NOT list these
# platforms in multiple places, i.e. in mplayer, xine, xbmc etc.
# Have a look at buildlink3.mk too.
.if ${OPSYS} == "Linux" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
VDPAU_AVAILABLE= yes
.elif ${OPSYS} == "FreeBSD" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64")
VDPAU_AVAILABLE= yes
.elif ${OPSYS} == "SunOS" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "x86_64") \
&& !empty(OS_VERSION:M5.1[0-9]*)
VDPAU_AVAILABLE= yes
.else
VDPAU_AVAILABLE= no
.endif
|