diff options
author | Romain Naour <romain.naour@gmail.com> | 2016-01-04 01:11:49 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-05 00:18:05 +0100 |
commit | 59568655d7eb446fcf52f60d7f630006b5b4471c (patch) | |
tree | 7db4dc8e58e59db1aa28a738a92ccef1c3ab6a64 | |
parent | 9cb8f160c2ebac03d29314511501271239f399ea (diff) | |
download | buildroot-59568655d7eb446fcf52f60d7f630006b5b4471c.tar.gz buildroot-59568655d7eb446fcf52f60d7f630006b5b4471c.zip |
package/x11r7/xserver_xorg-server: move libpciaccess selection
Move libpciaccess selection under BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR
to simplify.
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/x11r7/xserver_xorg-server/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/x11r7/xserver_xorg-server/Config.in b/package/x11r7/xserver_xorg-server/Config.in index f407d34596..ac1369e0f4 100644 --- a/package/x11r7/xserver_xorg-server/Config.in +++ b/package/x11r7/xserver_xorg-server/Config.in @@ -1,7 +1,6 @@ config BR2_PACKAGE_XSERVER_XORG_SERVER bool "xorg-server" depends on BR2_USE_MMU # fork() - select BR2_PACKAGE_LIBPCIACCESS if BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR # We need a SHA1 implementation. If either openssl or # libgcrypt are already part of the build, we'll use one of # them, otherwise, use the small libsha1 library. @@ -96,6 +95,7 @@ config BR2_PACKAGE_XSERVER_XORG_SERVER_MODULAR depends on BR2_INSTALL_LIBSTDCPP select BR2_PACKAGE_LIBDRM if (BR2_PACKAGE_XPROTO_XF86DRIPROTO || \ BR2_PACKAGE_XPROTO_DRI2PROTO) + select BR2_PACKAGE_LIBPCIACCESS select BR2_PACKAGE_XLIB_LIBXSHMFENCE if BR2_PACKAGE_XPROTO_DRI3PROTO help This variant of the X.org server is the full-blown variant, |