config/companion_tools.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sun Jan 17 23:06:02 2010 +0100 (2010-01-17)
changeset 1740 c57458bb354d
parent 1729 dd72fa745318
child 2285 7d1e018167b5
permissions -rw-r--r--
configure: do not require hg when configuring in an hg clone

When configuring in an hg clone, we need hg to compute the version string.
It can happen that users do not have Mercurial (eg. if they got a snapshot
rather that they did a full clone). In this case, we can still run, of
course, so simply fill the version string with a sufficiently explicit
value, that does not require hg. The date is a good candidate.
     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         libtool >= 2.2.4
    17       
    18       If your system has older versions, we can build them for you,
    19       but you are strongly encouraged to update your system instead!
    20 
    21 if COMP_TOOLS
    22 
    23 config COMP_TOOLS_m4
    24     bool
    25     prompt "m4"
    26 
    27 config COMP_TOOLS_autoconf
    28     bool
    29     prompt "autoconf"
    30 
    31 config COMP_TOOLS_automake
    32     bool
    33     prompt "automake"
    34 
    35 config COMP_TOOLS_libtool
    36     bool
    37     prompt "libtool"
    38 
    39 endif
    40 
    41 endmenu
    42 
    43 endif