libdrm: Remove dependency towards X11

Using this defconfig

BR2_x86_pentium_mmx=y
BR2_ENABLE_DEBUG=y
BR2_OPTIMIZE_2=y
BR2_TOOLCHAIN_BUILDROOT_LARGEFILE=y
# BR2_UCLIBC_INSTALL_UTILS is not set
BR2_BINUTILS_VERSION_2_23_2=y
BR2_GCC_VERSION_4_8_X=y
BR2_PACKAGE_LIBDRM=y
BR2_PACKAGE_LIBDRM_RADEON=y
BR2_PACKAGE_LIBDRM_NOUVEAU=y
BR2_PACKAGE_LIBDRM_VMWGFX=y

libdrm (w/o Intel API) compiles without BR2_PACKAGE_LIBATOMIC_OPS and without
BR2_PACKAGE_XLIB_LIBPCIACCESS, so USE_WCHAR, TOOLCHAIN_HAS_THREADS and
!BR2_PREFER_STATIC_LIB, previously added by the Xorg dependency, do not seem
to be necessary for libdrm at all.

Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com>
Signed-Off-By: Paul Cercueil <paul@crapouillou.net>
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
Reviewed-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Bernd Kuhls 2014-03-01 16:41:11 +01:00 committed by Thomas Petazzoni
parent 5562be136c
commit 72e184b731
2 changed files with 1 additions and 9 deletions

View File

@ -1,7 +1,6 @@
config BR2_PACKAGE_LIBDRM
bool "libdrm"
select BR2_PACKAGE_LIBPTHREAD_STUBS
depends on BR2_PACKAGE_XORG7
depends on BR2_LARGEFILE
help
Direct Rendering Manager
@ -14,6 +13,7 @@ menu "DRM Drivers"
config BR2_PACKAGE_LIBDRM_INTEL
bool "intel"
depends on BR2_PACKAGE_XORG7
select BR2_PACKAGE_LIBATOMIC_OPS
select BR2_PACKAGE_XLIB_LIBPCIACCESS
depends on BR2_i386 || BR2_x86_64
@ -22,22 +22,18 @@ config BR2_PACKAGE_LIBDRM_INTEL
config BR2_PACKAGE_LIBDRM_RADEON
bool "radeon"
select BR2_PACKAGE_LIBATOMIC_OPS
select BR2_PACKAGE_XLIB_LIBPCIACCESS
depends on BR2_i386 || BR2_x86_64
help
install AMD/ATI graphics driver
config BR2_PACKAGE_LIBDRM_NOUVEAU
bool "nouveau"
select BR2_PACKAGE_XLIB_LIBPCIACCESS
depends on BR2_i386 || BR2_x86_64
help
install Nvidia graphics driver
config BR2_PACKAGE_LIBDRM_VMWGFX
bool "vmwgfx"
select BR2_PACKAGE_XLIB_LIBPCIACCESS
depends on BR2_i386 || BR2_x86_64
help
installs Vmware graphics driver
@ -65,5 +61,4 @@ endmenu
endif
comment "libdrm needs a toolchain w/ largefile"
depends on BR2_PACKAGE_XORG7
depends on !BR2_LARGEFILE

View File

@ -28,21 +28,18 @@ endif
ifeq ($(BR2_PACKAGE_LIBDRM_RADEON),y)
LIBDRM_CONF_OPT += --enable-radeon
LIBDRM_DEPENDENCIES += xlib_libpciaccess
else
LIBDRM_CONF_OPT += --disable-radeon
endif
ifeq ($(BR2_PACKAGE_LIBDRM_NOUVEAU),y)
LIBDRM_CONF_OPT += --enable-nouveau
LIBDRM_DEPENDENCIES += xlib_libpciaccess
else
LIBDRM_CONF_OPT += --disable-nouveau
endif
ifeq ($(BR2_PACKAGE_LIBDRM_VMWGFX),y)
LIBDRM_CONF_OPT += --enable-vmwgfx
LIBDRM_DEPENDENCIES += xlib_libpciaccess
else
LIBDRM_CONF_OPT += --disable-vmwgfx
endif