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.
richard@1727
     1
# Companion tools config options
richard@1727
     2
richard@1727
     3
if EXPERIMENTAL
richard@1727
     4
richard@1727
     5
menu "Companion tools"
richard@1727
     6
richard@1727
     7
comment "READ HELP before you say 'Y' below !!!"
richard@1727
     8
config COMP_TOOLS
richard@1727
     9
    bool
richard@1727
    10
    prompt "Build some companion tools"
richard@1727
    11
    help
richard@1727
    12
      Crosstool-NG relies on some external tools to be recent enough, namely:
richard@1728
    13
        m4 >= 1.4.12
richard@1727
    14
        autoconf >= 2.63
richard@1729
    15
        automake >= 1.10.2
richard@1730
    16
        libtool >= 2.2.4
richard@1727
    17
      
richard@1727
    18
      If your system has older versions, we can build them for you,
richard@1727
    19
      but you are strongly encouraged to update your system instead!
richard@1727
    20
richard@1727
    21
if COMP_TOOLS
richard@1727
    22
richard@1728
    23
config COMP_TOOLS_m4
richard@1728
    24
    bool
richard@1728
    25
    prompt "m4"
richard@1728
    26
richard@1727
    27
config COMP_TOOLS_autoconf
richard@1727
    28
    bool
richard@1727
    29
    prompt "autoconf"
richard@1727
    30
richard@1729
    31
config COMP_TOOLS_automake
richard@1729
    32
    bool
richard@1729
    33
    prompt "automake"
richard@1729
    34
richard@1730
    35
config COMP_TOOLS_libtool
richard@1730
    36
    bool
richard@1730
    37
    prompt "libtool"
richard@1730
    38
richard@1727
    39
endif
richard@1727
    40
richard@1727
    41
endmenu
richard@1727
    42
richard@1727
    43
endif