All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [pull request] Pull request for branch config-choice-fixes
@ 2009-08-04 15:17 Thomas Petazzoni
  2009-08-04 15:17 ` [Buildroot] [PATCH 1/2] webkit: only show the rendering backend choice when webkit is enabled Thomas Petazzoni
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 15:17 UTC (permalink / raw)
  To: buildroot

The following changes since commit 5b72dda69f72e1953dfc7987dd1b418e1afe79a4:
  Peter Korsgaard (1):
        buildroot: fix fallout after qtopia4 -> qt rename

are available in the git repository at:

  git://git.busybox.net/~tpetazzoni/git/buildroot config-choice-fixes

Thomas Petazzoni (2):
      webkit: only show the rendering backend choice when webkit is enabled
      ipsec-tools: only show the security context choice when ipsec enabled

 package/ipsec-tools/Config.in |    4 ++++
 package/webkit/Config.in      |    4 ++++
 2 files changed, 8 insertions(+), 0 deletions(-)

Thanks,
-- 
Thomas Petazzoni

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 1/2] webkit: only show the rendering backend choice when webkit is enabled
  2009-08-04 15:17 [Buildroot] [pull request] Pull request for branch config-choice-fixes Thomas Petazzoni
@ 2009-08-04 15:17 ` Thomas Petazzoni
  2009-08-04 15:17 ` [Buildroot] [PATCH 2/2] ipsec-tools: only show the security context choice when ipsec enabled Thomas Petazzoni
  2009-08-04 19:43 ` [Buildroot] [pull request] Pull request for branch config-choice-fixes Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 15:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/webkit/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/webkit/Config.in b/package/webkit/Config.in
index e436f9a..ecf8694 100644
--- a/package/webkit/Config.in
+++ b/package/webkit/Config.in
@@ -18,6 +18,8 @@ config BR2_PACKAGE_WEBKIT
 comment "webkit requires a toolchain with C++ support and WCHAR enabled"
 	depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR
 
+if BR2_PACKAGE_WEBKIT
+
 choice
 	prompt "Rendering target"
 	default BR2_PACKAGE_WEBKIT_X
@@ -32,3 +34,5 @@ config BR2_PACKAGE_WEBKIT_DIRECTFB
 	select BR2_PACKAGE_DIRECTFB
 
 endchoice
+
+endif
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH 2/2] ipsec-tools: only show the security context choice when ipsec enabled
  2009-08-04 15:17 [Buildroot] [pull request] Pull request for branch config-choice-fixes Thomas Petazzoni
  2009-08-04 15:17 ` [Buildroot] [PATCH 1/2] webkit: only show the rendering backend choice when webkit is enabled Thomas Petazzoni
@ 2009-08-04 15:17 ` Thomas Petazzoni
  2009-08-04 19:43 ` [Buildroot] [pull request] Pull request for branch config-choice-fixes Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Thomas Petazzoni @ 2009-08-04 15:17 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/ipsec-tools/Config.in |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/package/ipsec-tools/Config.in b/package/ipsec-tools/Config.in
index a55ff0c..d29cb86 100644
--- a/package/ipsec-tools/Config.in
+++ b/package/ipsec-tools/Config.in
@@ -61,6 +61,8 @@ config BR2_PACKAGE_IPSEC_TOOLS_LIBS
 	  Install libipsec.a and libracoon.a under staging_dir/lib for further
 	  development on a host machine.
 
+if BR2_PACKAGE_IPSEC_TOOLS
+
 choice
 	prompt "Security context"
 	default BR2_PACKAGE_IPSEC_SECCTX_DISABLE
@@ -77,3 +79,5 @@ config BR2_PACKAGE_IPSEC_SECCTX_KERNEL
 	bool "Enable kernel security context"
 
 endchoice
+
+endif
-- 
1.6.0.4

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [pull request] Pull request for branch config-choice-fixes
  2009-08-04 15:17 [Buildroot] [pull request] Pull request for branch config-choice-fixes Thomas Petazzoni
  2009-08-04 15:17 ` [Buildroot] [PATCH 1/2] webkit: only show the rendering backend choice when webkit is enabled Thomas Petazzoni
  2009-08-04 15:17 ` [Buildroot] [PATCH 2/2] ipsec-tools: only show the security context choice when ipsec enabled Thomas Petazzoni
@ 2009-08-04 19:43 ` Peter Korsgaard
  2 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2009-08-04 19:43 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 Thomas> The following changes since commit 5b72dda69f72e1953dfc7987dd1b418e1afe79a4:
 Thomas>   Peter Korsgaard (1):
 Thomas>         buildroot: fix fallout after qtopia4 -> qt rename

 Thomas> are available in the git repository at:

 Thomas>   git://git.busybox.net/~tpetazzoni/git/buildroot config-choice-fixes

 Thomas> Thomas Petazzoni (2):
 Thomas>       webkit: only show the rendering backend choice when webkit is enabled
 Thomas>       ipsec-tools: only show the security context choice when ipsec enabled

Pulled and pushed - Thanks!

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-08-04 19:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-08-04 15:17 [Buildroot] [pull request] Pull request for branch config-choice-fixes Thomas Petazzoni
2009-08-04 15:17 ` [Buildroot] [PATCH 1/2] webkit: only show the rendering backend choice when webkit is enabled Thomas Petazzoni
2009-08-04 15:17 ` [Buildroot] [PATCH 2/2] ipsec-tools: only show the security context choice when ipsec enabled Thomas Petazzoni
2009-08-04 19:43 ` [Buildroot] [pull request] Pull request for branch config-choice-fixes Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.