config/libc/mingw.in.2
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Mon Jan 03 23:40:22 2011 +0100 (2011-01-03)
changeset 2267 7af68e6083aa
child 2484 d1a8c2ae7946
permissions -rw-r--r--
libc-glibc: remove 2.3.6

This is an obsolete version which is no longer used by any sample (the only
user, the ia64 sample, has been removed).

It also makes the code path a bit complex, with twists just to accomodate
that version. Removing the version will make those twists go away, and
will ease commonalisation of glibc and eglibc in the future (hopefully!).

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
     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