d1141e2c4a
This reverts commit52ac6d1c6b
. While looking at mesa3d package, I found this commit [1] about libxv refering to an upstream commit [2]. The commit message is confusing "This library does not itself require libXv for anything." but xv is still checked by the configure script (pkg-config) and libXvMC still include Xvlib.h from XvMClib.h In file included from XvMClibint.h:7:0, from XvMC.c:5: ../include/X11/extensions/XvMClib.h:5:10: fatal error: X11/extensions/Xvlib.h: No such file or directory #include <X11/extensions/Xvlib.h> ^~~~~~~~~~~~~~~~~~~~~~~~ compilation terminated. So, xlib_libXv sill use xv library by including a header and using XvImageFormatValues. [1] https://cgit.freedesktop.org/mesa/mesa/commit/?id=2dbf10ba3d129d59e1a6c0e46b24c20629b277c6 [2]dd9ae03725
Fixes: http://autobuild.buildroot.org/results/305/3051f4fbc1ab725de542a550e4f9eeb3cae385b8 Signed-off-by: Romain Naour <romain.naour@smile.fr> Cc: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
603 B
Makefile
17 lines
603 B
Makefile
################################################################################
|
|
#
|
|
# xlib_libXvMC
|
|
#
|
|
################################################################################
|
|
|
|
XLIB_LIBXVMC_VERSION = 1.0.12
|
|
XLIB_LIBXVMC_SOURCE = libXvMC-$(XLIB_LIBXVMC_VERSION).tar.bz2
|
|
XLIB_LIBXVMC_SITE = http://xorg.freedesktop.org/releases/individual/lib
|
|
XLIB_LIBXVMC_LICENSE = MIT
|
|
XLIB_LIBXVMC_LICENSE_FILES = COPYING
|
|
XLIB_LIBXVMC_INSTALL_STAGING = YES
|
|
XLIB_LIBXVMC_DEPENDENCIES = xlib_libX11 xlib_libXext xlib_libXv xorgproto
|
|
XLIB_LIBXVMC_CONF_OPTS = --disable-malloc0returnsnull
|
|
|
|
$(eval $(autotools-package))
|