diff options
author | Floris Bos <bos@je-eigen-domein.nl> | 2014-12-27 18:01:31 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2014-12-27 18:46:51 +0100 |
commit | bc5b451b5ea48eef88ed0713be0af1f65a3c015b (patch) | |
tree | 4ac6ee9e54512f15f10f6f3fcf19dda8b11fa962 | |
parent | 235c95af8fecdcf1326572f47367d9b6d0d55e76 (diff) | |
download | buildroot-bc5b451b5ea48eef88ed0713be0af1f65a3c015b.tar.gz buildroot-bc5b451b5ea48eef88ed0713be0af1f65a3c015b.zip |
libvncserver: disable libva support
The libvncclient library (part of libvncserver) has optional support
for HW accelerated H264 video playback using libva
However there are currently two problems with it:
1) it only supports libva compiled with X11 support enabled, but it
does not verify that is the case, resulting in compile errors.
2) it only supports the libva 1.0.x API, and not newer
libva versions, like 1.4.x we include with buildroot.
https://github.com/LibVNC/libvncserver/issues/11
Disabling libva support for now.
Signed-off-by: Floris Bos <bos@je-eigen-domein.nl>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/libvncserver/libvncserver.mk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/libvncserver/libvncserver.mk b/package/libvncserver/libvncserver.mk index ced6689038..a8389b4203 100644 --- a/package/libvncserver/libvncserver.mk +++ b/package/libvncserver/libvncserver.mk @@ -17,6 +17,10 @@ LIBVNCSERVER_DEPENDENCIES = host-pkgconf # tarball, so we need to generate them. LIBVNCSERVER_AUTORECONF = YES +# libvncserver does not get along with newer libva versions +# https://github.com/LibVNC/libvncserver/issues/11 +LIBVNCSERVER_CONF_OPTS += --without-libva + # only used for examples LIBVNCSERVER_CONF_OPTS += --with-sdl-config=/bin/false |