config/companion_tools.in
author Richard Strand <richard.strand@icomera.com>
Tue Jan 12 21:47:14 2010 +0000 (2010-01-12)
changeset 1728 60b7ebc4709a
parent 1727 5f222264bb54
child 1729 dd72fa745318
permissions -rw-r--r--
companion_tools/m4: Add m4 tool

Add version 1.4.13 of m4 as a companion tool

Signed-off-by: Richard Strand <richard.strand@icomera.com>
     1 # Companion tools config options
     2 
     3 if EXPERIMENTAL
     4 
     5 menu "Companion tools"
     6 
     7 comment "READ HELP before you say 'Y' below !!!"
     8 config COMP_TOOLS
     9     bool
    10     prompt "Build some companion tools"
    11     help
    12       Crosstool-NG relies on some external tools to be recent enough, namely:
    13         m4 >= 1.4.12
    14         autoconf >= 2.63
    15       
    16       If your system has older versions, we can build them for you,
    17       but you are strongly encouraged to update your system instead!
    18 
    19 if COMP_TOOLS
    20 
    21 config COMP_TOOLS_m4
    22     bool
    23     prompt "m4"
    24 
    25 config COMP_TOOLS_autoconf
    26     bool
    27     prompt "autoconf"
    28 
    29 endif
    30 
    31 endmenu
    32 
    33 endif