Bump buidlroot version to 2018.02.6
This commit is contained in:
@@ -4,13 +4,13 @@
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MPV_VERSION = 0.23.0
|
||||
MPV_VERSION = 0.27.2
|
||||
MPV_SITE = https://github.com/mpv-player/mpv/archive
|
||||
MPV_SOURCE = v$(MPV_VERSION).tar.gz
|
||||
MPV_DEPENDENCIES = \
|
||||
host-pkgconf ffmpeg zlib \
|
||||
$(if $(BR2_PACKAGE_LIBICONV),libiconv)
|
||||
MPV_LICENSE = GPLv2+
|
||||
MPV_LICENSE = GPL-2.0+
|
||||
MPV_LICENSE_FILES = LICENSE
|
||||
|
||||
MPV_NEEDS_EXTERNAL_WAF = YES
|
||||
@@ -26,13 +26,13 @@ MPV_CONF_OPTS = \
|
||||
--disable-cuda-hwaccel \
|
||||
--disable-libv4l2 \
|
||||
--disable-opensles \
|
||||
--disable-rpi \
|
||||
--disable-rsound \
|
||||
--disable-rubberband \
|
||||
--disable-uchardet \
|
||||
--disable-vapoursynth \
|
||||
--disable-vapoursynth-lazy \
|
||||
--disable-vdpau
|
||||
--disable-vdpau \
|
||||
--disable-mali-fbdev
|
||||
|
||||
# ALSA support requires pcm+mixer
|
||||
ifeq ($(BR2_PACKAGE_ALSA_LIB_MIXER)$(BR2_PACKAGE_ALSA_LIB_PCM),yy)
|
||||
@@ -134,10 +134,10 @@ endif
|
||||
|
||||
# OpenGL support
|
||||
ifeq ($(BR2_PACKAGE_HAS_LIBGL),y)
|
||||
MPV_CONF_OPTS += --enable-gl --enable-standard-gl
|
||||
MPV_CONF_OPTS += --enable-gl
|
||||
MPV_DEPENDENCIES += libgl
|
||||
else
|
||||
MPV_CONF_OPTS += --disable-gl --disable-standard-gl
|
||||
MPV_CONF_OPTS += --disable-gl
|
||||
endif
|
||||
|
||||
# pulseaudio support
|
||||
@@ -169,11 +169,19 @@ else
|
||||
MPV_CONF_OPTS += --disable-sdl1 --disable-sdl2
|
||||
endif
|
||||
|
||||
# Raspberry Pi support
|
||||
ifeq ($(BR2_PACKAGE_RPI_USERLAND),y)
|
||||
MPV_CONF_OPTS += --enable-rpi --enable-gl
|
||||
MPV_DEPENDENCIES += rpi-userland
|
||||
else
|
||||
MPV_CONF_OPTS += --disable-rpi
|
||||
endif
|
||||
|
||||
# va-api support
|
||||
# This requires one or more of the egl-drm, wayland, x11 backends
|
||||
# For now we support wayland and x11
|
||||
ifeq ($(BR2_PACKAGE_LIBVA),y)
|
||||
ifneq ($(BR2_PACKAGE_WAYLAND)$(BR2_PACKAGE_XLIB_LIBX11),)
|
||||
ifneq ($(BR2_PACKAGE_WAYLAND)$(BR2_PACKAGE_XORG7),)
|
||||
MPV_CONF_OPTS += --enable-vaapi
|
||||
MPV_DEPENDENCIES += libva
|
||||
else
|
||||
@@ -191,31 +199,12 @@ else
|
||||
MPV_CONF_OPTS += --disable-wayland
|
||||
endif
|
||||
|
||||
# Base X11 support
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
||||
MPV_CONF_OPTS += --enable-x11 --disable-xss
|
||||
MPV_DEPENDENCIES += xlib_libX11
|
||||
# xext
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXEXT),y)
|
||||
MPV_CONF_OPTS += --enable-xext
|
||||
MPV_DEPENDENCIES += xlib_libXext
|
||||
else
|
||||
MPV_CONF_OPTS += --disable-xext
|
||||
endif
|
||||
# xinerama
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXINERAMA),y)
|
||||
MPV_CONF_OPTS += --enable-xinerama
|
||||
MPV_DEPENDENCIES += xlib_libXinerama
|
||||
else
|
||||
MPV_CONF_OPTS += --disable-xinerama
|
||||
endif
|
||||
# xrandr
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXRANDR),y)
|
||||
MPV_CONF_OPTS += --enable-xrandr
|
||||
MPV_DEPENDENCIES += xlib_libXrandr
|
||||
else
|
||||
MPV_CONF_OPTS += --disable-xrandr
|
||||
endif
|
||||
# Base X11 support. Config.in ensures that if BR2_PACKAGE_XORG7 is
|
||||
# enabled, xlib_libX11, xlib_libXext, xlib_libXinerama,
|
||||
# xlib_libXrandr, xlib_libXScrnSaver.
|
||||
ifeq ($(BR2_PACKAGE_XORG7),y)
|
||||
MPV_CONF_OPTS += --enable-x11
|
||||
MPV_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXinerama xlib_libXrandr xlib_libXScrnSaver
|
||||
# XVideo
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXV),y)
|
||||
MPV_CONF_OPTS += --enable-xv
|
||||
|
||||
Reference in New Issue
Block a user