config/config.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Thu May 26 22:51:03 2011 +0200 (2011-05-26)
changeset 2481 30644208c955
parent 2447 bb73e7632b54
child 2650 4d299836e994
permissions -rw-r--r--
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" <yann.morin.1998@anciens.enib.fr>
     1 mainmenu "The crosstool-NG configuration menu"
     2 source "config/configure.in"
     3 source "config/backend.in"
     4 source "config/global.in"
     5 source "config/target.in"
     6 source "config/toolchain.in"
     7 source "config/kernel.in"
     8 source "config/binutils.in"
     9 source "config/cc.in"
    10 source "config/libc.in"
    11 source "config/debug.in"
    12 source "config/companion_libs.in"
    13 source "config/companion_tools.in"
    14 source "config/test_suite.in"