summaryrefslogtreecommitdiff
path: root/multimedia/libvdpau/available.mk
blob: 64b1cf67f2f741e3fa2ed603c391c08763c965b8 (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.2 2011/02/20 21:39:22 wiz 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} == "amd64")
VDPAU_AVAILABLE=	yes
.elif ${OPSYS} == "FreeBSD" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64")
VDPAU_AVAILABLE=	yes
.elif ${OPSYS} == "SunOS" && (${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "amd64") \
  && !empty(OS_VERSION:M5.1[0-9]*)
VDPAU_AVAILABLE=	yes
.else
VDPAU_AVAILABLE=	no
.endif