Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: llandwerlin at gmail.com <llandwerlin@gmail.com>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH 1/7] directfb: some cleanup in config file
Date: Wed, 20 Jan 2010 01:05:30 +0100	[thread overview]
Message-ID: <1263945936-8613-1-git-send-email-llandwerlin@gmail.com> (raw)
In-Reply-To: <20100119201528.3733.74306.stgit@localhost.localdomain>

From: Lionel Landwerlin <llandwerlin@gmail.com>

Signed-off-by: Lionel Landwerlin <llandwerlin@gmail.com>
---
 package/directfb/Config.in |   24 ++++--------------------
 1 files changed, 4 insertions(+), 20 deletions(-)

diff --git a/package/directfb/Config.in b/package/directfb/Config.in
index fd1f766..7c41cdf 100644
--- a/package/directfb/Config.in
+++ b/package/directfb/Config.in
@@ -5,113 +5,97 @@ config BR2_PACKAGE_DIRECTFB
 	help
 	  http://www.directfb.org/
 
+if BR2_PACKAGE_DIRECTFB
+
 config BR2_PACKAGE_DIRECTFB_MULTI
 	bool "directfb multi application"
-	depends on BR2_PACKAGE_DIRECTFB
 	select BR2_PACKAGE_LINUX_FUSION
 	help
 	  Enable use of multiple concurrent DirectFB applications
 
 config BR2_PACKAGE_DIRECTFB_DEBUG
 	bool "directfb debugging"
-	depends on BR2_PACKAGE_DIRECTFB
 	help
 	  Compile DirectFB with lots of debug output
 
 config BR2_PACKAGE_DIRECTFB_TRACE
 	bool "directfb call trace support"
-	depends on BR2_PACKAGE_DIRECTFB
 	help
 	  Enable call tracing for DirectFB applications
 
 config BR2_PACKAGE_DIRECTFB_XSERVER
 	bool "build with X server backend"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_PACKAGE_XORG7
 
 config BR2_PACKAGE_DIRECTFB_UNIQUE
 	bool "enable unique window manager"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_UNIMPLEMENTED
 
 config BR2_PACKAGE_DIRECTFB_ATI128
 	bool "compile ati128 graphics driver"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
 config BR2_PACKAGE_DIRECTFB_CLE266
 	bool "compile cle266 graphics driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
 config BR2_PACKAGE_DIRECTFB_MATROX
 	bool "compile matrox graphics driver"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
 config BR2_PACKAGE_DIRECTFB_PXA3XX
 	bool "compile pxa3xx graphics driver"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_arm
 
 config BR2_PACKAGE_DIRECTFB_UNICHROME
 	bool "compile unichrome graphics driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
 config BR2_PACKAGE_DIRECTFB_I830
 	bool "compile i830 graphics driver"
-	depends on BR2_PACKAGE_DIRECTFB
 	depends on BR2_i386 || BR2_x86_64
 
 config BR2_PACKAGE_DIRECTFB_LINUXINPUT
 	bool "compile /dev/input/eventX input driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_KEYBOARD
 	bool "compile keyboard input driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_PS2MOUSE
 	bool "compile PS2 mouse input driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_SERIALMOUSE
 	bool "compile serial mouse input driver"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_TSLIB
 	bool "enable touchscreen support"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 	select BR2_PACKAGE_TSLIB
 
 config BR2_PACKAGE_DIRECTFB_GIF
 	bool "enable GIF support"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 
 config BR2_PACKAGE_DIRECTFB_JPEG
 	bool "enable JPEG support"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 	select BR2_PACKAGE_JPEG
 
 config BR2_PACKAGE_DIRECTFB_PNG
 	bool "enable PNG support"
 	default y
-	depends on BR2_PACKAGE_DIRECTFB
 	select BR2_PACKAGE_LIBPNG
 
 config BR2_PACKAGE_DIRECTB_DITHER_RGB16
 	bool "enable advanced dithering of RGB16 surfaces"
-	depends on BR2_PACKAGE_DIRECTFB
 	help
 	  Enable dithering when loading images to RGB16 surfaces.
 	  This increases the data section by 64 KBytes.
+
+endif # BR2_PACKAGE_DIRECTFB
-- 
1.6.5.7

  reply	other threads:[~2010-01-20  0:05 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2010-01-19 20:15 [Buildroot] [PATCH] Bump DirectFB to 1.4.3 Paulius Zaleckas
2010-01-20  0:05 ` llandwerlin at gmail.com [this message]
2010-01-28 16:11   ` [Buildroot] [PATCH 1/7] directfb: some cleanup in config file Peter Korsgaard
2010-01-20  0:05 ` [Buildroot] [PATCH 3/7] package: added lirc llandwerlin at gmail.com
2010-01-20  0:05 ` [Buildroot] [PATCH 4/7] directfb: added support for lirc llandwerlin at gmail.com
2010-01-20  0:05 ` [Buildroot] [PATCH 5/7] sawman: bump to 1.4.3 llandwerlin at gmail.com
2010-01-28 16:12   ` Peter Korsgaard
2010-01-20  0:05 ` [Buildroot] [PATCH 6/7] pixman: bump to 0.16.4 llandwerlin at gmail.com
2010-01-28 16:14   ` Peter Korsgaard
2010-01-28 16:54     ` Lionel Landwerlin
2010-01-20  0:05 ` [Buildroot] [PATCH 7/7] cairo: Bump to 1.8.8 llandwerlin at gmail.com
2010-01-20  0:07 ` [Buildroot] [PATCH] Bump DirectFB to 1.4.3 Lionel Landwerlin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1263945936-8613-1-git-send-email-llandwerlin@gmail.com \
    --to=llandwerlin@gmail.com \
    --cc=buildroot@busybox.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox