From a257ff7da8d2ae772011d3cce0b22c741e5b3ce1 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN\"" Date: Thu, 26 May 2011 22:51:03 +0200 Subject: configure: add possibility to set arbitrary variable in check_for If check_for is able to find the required prog/inc/lib, allow it to set an arbitrary variable to 'y'. This variable is then pushed down to the kconfig definition. For example: has_or_abort prog=foobar kconfig=has_foobar If foobar is available, it yields a kconfig variable defaulting to y: config CONFIGURE_has_foobar bool default y If foobar is missing, it yields a kconfig variable defaulting to n: config CONFIGURE_has_foobar bool Thus it is possible to depends on that variabel to show/hide options: config SOME_FEATURE bool prompt "Some feature" depends on CONFIGURE_has_foobar Signed-off-by: "Yann E. MORIN" --- config/config.in | 1 + 1 file changed, 1 insertion(+) (limited to 'config/config.in') diff --git a/config/config.in b/config/config.in index 8be19f50..5ebd2be0 100644 --- a/config/config.in +++ b/config/config.in @@ -1,4 +1,5 @@ mainmenu "The crosstool-NG configuration menu" +source "config/configure.in" source "config/backend.in" source "config/global.in" source "config/target.in" -- cgit v1.2.3