From 7b6243157f042a7bde353abc6fb22aadad6d9e2d Mon Sep 17 00:00:00 2001 From: Floris Bos Date: Mon, 29 Dec 2014 00:02:33 +0100 Subject: Fix libva related compile errors - Make h264.c compile with recent libva version by including va_compat.h - Only enable libva if libva-x11 is installed - Modified configure help text Previous help text suggested libva was only build when --with-libva was specified, while actual behavior is to build it by default. Warning: THIS CODE IS UNTESTED. Lacking a h.264 capable VNC server Also no attempt is made to support platforms not using X11 Signed-off-by: Floris Bos --- libvncclient/h264.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libvncclient') diff --git a/libvncclient/h264.c b/libvncclient/h264.c index 1d94454..c63a713 100644 --- a/libvncclient/h264.c +++ b/libvncclient/h264.c @@ -20,6 +20,10 @@ #ifdef LIBVNCSERVER_CONFIG_LIBVA #include +#include +#if VA_CHECK_VERSION(0,34,0) +#include +#endif #include enum _slice_types { -- cgit v1.2.3