config/libc/mingw.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Tue Aug 31 23:24:40 2010 +0200 (2010-08-31)
branch1.8
changeset 2108 68d038933dc4
child 2484 d1a8c2ae7946
permissions -rw-r--r--
binutils/binutils: remove faulty patch

The added code should be conditinal to the target system
being !MIPS, but is based on the host system being !MIPS.

This is plain wrong, and had not been noticed until now
as I never used those binutils versions on MIPS.

See:
http://sourceware.org/ml/crossgcc/2010-08/msg00192.html

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
(transplanted from f5ab0a80e46616adb3619cc7c5d78d0ccd7ea697)
     1 # Part-2 of mingw C library options: development libraries
     2 
     3 config MINGW_DIRECTX
     4     bool
     5     prompt "Include DirectX development files"
     6     default n
     7 
     8 config MINGW_OPENGL
     9     bool
    10     prompt "Include OpenGL development files"
    11     default n
    12 
    13 config MINGW_PDCURSES
    14     bool
    15     prompt "Include PDCurses (NCurses library) development files"
    16     default n
    17 
    18 choice
    19     bool
    20     prompt "PDCurses library version"
    21     depends on MINGW_PDCURSES
    22 
    23 config MINGW_PDCURSES_V_3_4
    24     bool
    25     prompt "3.4"
    26 
    27 # CT_INSERT_VERSION_ABOVE
    28 # Don't remove above line!
    29 
    30 config MINGW_PDCURSES_V_select
    31     bool
    32     prompt "Other version"
    33 
    34 endchoice
    35 
    36 config MINGW_PDCURSES_VERSION
    37     string
    38     prompt "PDCurses library version" if MINGW_PDCURSES_V_select
    39     default "3.4" if MINGW_PDCURSES_V_3_4
    40 # CT_INSERT_VERSION_STRING_ABOVE
    41 # Don't remove above line!
    42     help
    43       Enter the version number of the PDCurses library to use
    44 
    45 config MINGW_GNURX
    46     bool
    47     prompt "Include GnuRX (regex library) development files"
    48     default n
    49 
    50 choice
    51     bool
    52     prompt "GnuRX library version"
    53     depends on MINGW_GNURX
    54 
    55 config MINGW_GNURX_V_2_5_1
    56     bool
    57     prompt "2.5.1"
    58 
    59 # CT_INSERT_VERSION_ABOVE
    60 # Don't remove above line!
    61 
    62 config MINGW_GNURX_V_select
    63     bool
    64     prompt "Other version"
    65 
    66 endchoice
    67 
    68 config MINGW_GNURX_VERSION
    69     string
    70     prompt "GnuRX library version" if MINGW_GNURX_V_select
    71     default "2.5.1" if MINGW_GNURX_V_2_5_1
    72 # CT_INSERT_VERSION_STRING_ABOVE
    73 # Don't remove above line!
    74     help
    75       Enter the version number of the Regex library to use
    76