18 lines
521 B
Makefile
18 lines
521 B
Makefile
# $NetBSD: available.mk,v 1.4 2016/02/25 23:35:44 jperkin Exp $
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
# At the moment VAAPI is available only for XXX. 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.
|
|
|
|
# The following should be kept up-to-date!
|
|
.if ${OPSYS} == "Linux"
|
|
VAAPI_AVAILABLE= yes
|
|
.elif ${OPSYS} == "FreeBSD"
|
|
VAAPI_AVAILABLE= yes
|
|
.elif ${OPSYS} == "OpenBSD"
|
|
VAAPI_AVAILABLE= yes
|
|
.else
|
|
VAAPI_AVAILABLE= no
|
|
.endif
|