diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2016-01-05 09:00:32 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2016-01-05 09:03:36 +0100 |
commit | 286182d0d3727f48f477f9dbaad8b4d319104329 (patch) | |
tree | dd33af93424a123b08eb668ce6284404eaf46bdb | |
parent | 59568655d7eb446fcf52f60d7f630006b5b4471c (diff) | |
download | buildroot-286182d0d3727f48f477f9dbaad8b4d319104329.tar.gz buildroot-286182d0d3727f48f477f9dbaad8b4d319104329.zip |
xapp_xcompmgr: select xlib_libXrender
Fixes:
http://autobuild.buildroot.net/results/969/9690a67083f31070e27c95b053fc0fd389fd373a/
libXrender is added to _DEPENDENCIES, but not selected at the kconfig level.
While we're at it, sort the selects alphabetically and drop the double
libxfixes select.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/x11r7/xapp_xcompmgr/Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/x11r7/xapp_xcompmgr/Config.in b/package/x11r7/xapp_xcompmgr/Config.in index a2e1db586e..b46014db98 100644 --- a/package/x11r7/xapp_xcompmgr/Config.in +++ b/package/x11r7/xapp_xcompmgr/Config.in @@ -1,10 +1,10 @@ config BR2_PACKAGE_XAPP_XCOMPMGR bool "xcompmgr" select BR2_PACKAGE_XLIB_LIBXCOMPOSITE - select BR2_PACKAGE_XLIB_LIBXFIXES + select BR2_PACKAGE_XLIB_LIBXDAMAGE select BR2_PACKAGE_XLIB_LIBXEXT select BR2_PACKAGE_XLIB_LIBXFIXES - select BR2_PACKAGE_XLIB_LIBXDAMAGE + select BR2_PACKAGE_XLIB_LIBXRENDER help xcompmgr is a sample compositing manager that enables basic eye-candy effects. |