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

Add version 1.11.1 of automake 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         automake >= 1.10.2
    16       
    17       If your system has older versions, we can build them for you,
    18       but you are strongly encouraged to update your system instead!
    19 
    20 if COMP_TOOLS
    21 
    22 config COMP_TOOLS_m4
    23     bool
    24     prompt "m4"
    25 
    26 config COMP_TOOLS_autoconf
    27     bool
    28     prompt "autoconf"
    29 
    30 config COMP_TOOLS_automake
    31     bool
    32     prompt "automake"
    33 
    34 endif
    35 
    36 endmenu
    37 
    38 endif