diff options
author | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-11-29 13:01:23 +0000 |
---|---|---|
committer | Ulf Samuelsson <ulf.samuelsson@atmel.com> | 2007-11-29 13:01:23 +0000 |
commit | 6532fc0b12ea0b78791c707bcbc5ca0e5e9c9726 (patch) | |
tree | 2e91ef4284fffaca711a89d2c0b869eb9fcc9055 | |
parent | 2fc7394b94f3812d627962ea7b3521bb227a693f (diff) | |
download | buildroot-novena-6532fc0b12ea0b78791c707bcbc5ca0e5e9c9726.tar.gz buildroot-novena-6532fc0b12ea0b78791c707bcbc5ca0e5e9c9726.zip |
Make dillo depend on packets, instead of selecting them
-rw-r--r-- | package/dillo/Config.in | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/package/dillo/Config.in b/package/dillo/Config.in index eeddee298..727d305be 100644 --- a/package/dillo/Config.in +++ b/package/dillo/Config.in @@ -1,13 +1,16 @@ config BR2_PACKAGE_DILLO bool "dillo" default n - select BR2_PACKAGE_JPEG - select BR2_PACKAGE_LIBGLIB12 - select BR2_PACKAGE_LIBGTK12 - select BR2_PACKAGE_ZLIB - select BR2_PACKAGE_LIBPNG + depends BR2_PACKAGE_JPEG + depends BR2_PACKAGE_LIBGLIB12 + depends BR2_PACKAGE_LIBGTK12 + depends BR2_PACKAGE_ZLIB + depends BR2_PACKAGE_LIBPNG depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7 help Dillo is a small GTK+ based web browser written in C. http://www.dillo.org/ + +comment "dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))" + depends !BR2_PACKAGE_JPEG || !BR2_PACKAGE_LIBGLIB12 || !BR2_PACKAGE_LIBGTK12 || !BR2_PACKAGE_ZLIB || !BR2_PACKAGE_LIBPNG || !(BR2_PACKAGE_XORG || BR2_PACKAGE_XORG7) |