diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2015-02-04 01:34:16 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-07 21:23:30 +0100 |
commit | ef8573de1abfeda51cc6703719e2c6e7a52115f2 (patch) | |
tree | 3b350c42fb7703a5924cc36d4c42ba2a6c93c22e | |
parent | 454c31103b3c42efd8b32ec3b440afa0e24879ee (diff) | |
download | buildroot-ef8573de1abfeda51cc6703719e2c6e7a52115f2.tar.gz buildroot-ef8573de1abfeda51cc6703719e2c6e7a52115f2.zip |
xscreensaver: add missing indirect dependency on atomics
Also reformat the comment lines and fix the comment.
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/xscreensaver/Config.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/package/xscreensaver/Config.in b/package/xscreensaver/Config.in index 6260040274..59b19c5eb1 100644 --- a/package/xscreensaver/Config.in +++ b/package/xscreensaver/Config.in @@ -1,10 +1,11 @@ config BR2_PACKAGE_XSCREENSAVER bool "xscreensaver" depends on BR2_PACKAGE_XORG7 - depends on BR2_INSTALL_LIBSTDCPP # libgtk2->pango - depends on BR2_TOOLCHAIN_HAS_THREADS # libgtk2->glib2 - depends on BR2_USE_WCHAR # libgtk2->glib2 - depends on BR2_USE_MMU # libgtk2->glib2 + depends on BR2_INSTALL_LIBSTDCPP # libgtk2 -> pango + depends on BR2_TOOLCHAIN_HAS_THREADS # libgtk2 -> glib2 + depends on BR2_USE_WCHAR # libgtk2 -> glib2 + depends on BR2_USE_MMU # libgtk2 -> glib2 + depends on BR2_ARCH_HAS_ATOMICS # libgtk2 -> cairo select BR2_PACKAGE_LIBGTK2 select BR2_PACKAGE_LIBGLADE select BR2_PACKAGE_JPEG @@ -24,4 +25,6 @@ config BR2_PACKAGE_XSCREENSAVER comment "xscreensaver needs a toolchain w/ wchar, C++, threads" depends on BR2_PACKAGE_XORG7 depends on BR2_USE_MMU - depends on !(BR2_INSTALL_LIBSTDCPP && BR2_TOOLCHAIN_HAS_THREADS) + depends on BR2_ARCH_HAS_ATOMICS + depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \ + !BR2_USE_WCHAR |