mirror of
https://github.com/crosstool-ng/crosstool-ng.git
synced 2024-12-21 21:57:48 +00:00
6c368af5b4
- remove legions of those, - remove associated patches no longer needed, - mark then as (OBSOLETE) in the prompt;
35 lines
530 B
Plaintext
35 lines
530 B
Plaintext
# dmalloc debug facility
|
|
|
|
menuconfig DMALLOC
|
|
bool
|
|
prompt "dmalloc"
|
|
default n
|
|
|
|
if DMALLOC
|
|
|
|
choice
|
|
bool
|
|
prompt "dmalloc version"
|
|
|
|
config DMALLOC_V_5_4_3
|
|
bool
|
|
prompt "5.4.3 (OBSOLETE)"
|
|
depends on OBSOLETE
|
|
|
|
config DMALLOC_V_5_5_2
|
|
bool
|
|
prompt "5.5.2"
|
|
|
|
# CT_INSERT_VERSION_ABOVE
|
|
# Don't remove above line!
|
|
endchoice
|
|
|
|
config DMALLOC_VERSION
|
|
string
|
|
default "5.4.3" if DMALLOC_V_5_4_3
|
|
default "5.5.2" if DMALLOC_V_5_5_2
|
|
# CT_INSERT_VERSION_STRING_ABOVE
|
|
# Don't remove above line!
|
|
|
|
endif
|