Selaa lähdekoodia

Make dillo depend on packets, instead of selecting them

Ulf Samuelsson 17 vuotta sitten
vanhempi
commit
6532fc0b12
1 muutettua tiedostoa jossa 8 lisäystä ja 5 poistoa
  1. 8 5
      package/dillo/Config.in

+ 8 - 5
package/dillo/Config.in

@@ -1,13 +1,16 @@
 config BR2_PACKAGE_DILLO
 config BR2_PACKAGE_DILLO
 	bool "dillo"
 	bool "dillo"
 	default n
 	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
 	depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7
 	help
 	help
 	  Dillo is a small GTK+ based web browser written in C.
 	  Dillo is a small GTK+ based web browser written in C.
 
 
 	  http://www.dillo.org/
 	  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)