From: Ulf Samuelsson Date: Thu, 29 Nov 2007 13:01:23 +0000 (-0000) Subject: Make dillo depend on packets, instead of selecting them X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6532fc0b12ea0b78791c707bcbc5ca0e5e9c9726;p=buildroot.git Make dillo depend on packets, instead of selecting them --- diff --git a/package/dillo/Config.in b/package/dillo/Config.in index eeddee2984..727d305bea 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)