config/companion_tools.in
author Ray Donnelly <mingw.android@gmail.com>
Thu Feb 20 18:23:08 2014 +0000 (2014-02-20)
changeset 3292 9321d9d7af9b
parent 3291 ccef9a13c09b
child 3293 e11a8a2e225d
permissions -rw-r--r--
If GNU make 3.81 is not found then build it as a companion tool.

Signed-off-by: Ray Donnelly <mingw.android@gmail.com>
[yann.morin.1998@free.fr: add message "checking for make 3.81"]
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Message-Id: <8b8bf6998f3d239f6c74.1392920971@advancedsearch.virginmedia.com>
Patchwork-Id: 322302
     1 # Companion tools config options
     2 
     3 menu "Companion tools"
     4 
     5 config COMP_TOOLS_make_3_81_NEEDED
     6     bool
     7     depends on ! CONFIGURE_has_make381
     8     default y
     9     select COMP_TOOLS
    10     select COMP_TOOLS_make
    11 
    12 comment "READ HELP before you say 'Y' below !!!"
    13 
    14 config COMP_TOOLS
    15     bool
    16     prompt "Build some companion tools"
    17     help
    18       Crosstool-NG relies on some external tools to be recent enough, namely:
    19         make = 3.81 (in some cases)
    20         m4 >= 1.4.12
    21         autoconf >= 2.63
    22         automake >= 1.10.2
    23         libtool >= 2.2.4
    24       
    25       If your system has older versions, we can build them for you,
    26       but you are strongly encouraged to update your system instead!
    27 
    28 if COMP_TOOLS
    29 
    30 config COMP_TOOLS_make
    31     bool
    32     prompt "make"
    33 
    34 config COMP_TOOLS_m4
    35     bool
    36     prompt "m4"
    37 
    38 config COMP_TOOLS_autoconf
    39     bool
    40     prompt "autoconf"
    41 
    42 config COMP_TOOLS_automake
    43     bool
    44     prompt "automake"
    45 
    46 config COMP_TOOLS_libtool
    47     bool
    48     prompt "libtool"
    49 
    50 endif
    51 
    52 endmenu