Browse Source

uclibc: improved to have configuration options for enabling SuSv3 and SuSv4 legacy functions

user/amery/mess
Christian Wiese 14 years ago
committed by Alejandro Mery
parent
commit
40427c5cef
2 changed files with 17 additions and 0 deletions
  1. +7
    -0
      base/uclibc/subconfig-libc-300.in
  2. +10
    -0
      base/uclibc/uclibc.conf

+ 7
- 0
base/uclibc/subconfig-libc-300.in

@ -27,4 +27,11 @@ if [ "$SDECFG_LIBC" == "uclibc" ]; then
none "disable thread support" \ none "disable thread support" \
old "use older version of linuxthreads (stable)" \ old "use older version of linuxthreads (stable)" \
new "use slightly newer version of linuxthreads (not much tested)" new "use slightly newer version of linuxthreads (not much tested)"
comment ' '
comment 'Legacy feature support:'
bool 'Enable SuSv3 LEGACY functions' SDECFG_PKG_UCLIBC_SUSV3_LEGACY 0
bool 'Enable SuSv4 LEGACY or obsolescent functions' SDECFG_PKG_UCLIBC_SUSV4_LEGACY 0
fi fi

+ 10
- 0
base/uclibc/uclibc.conf

@ -66,6 +66,16 @@ default_config() {
echo "X HAS_NO_THREADS" echo "X HAS_NO_THREADS"
fi fi
# SuSv3 legacy support
if [ "$SDECFG_PKG_UCLIBC_SUSV3_LEGACY" = "1" ]; then
echo "X UCLIBC_SUSV3_LEGACY"
fi
# SuSv4 legacy support
if [ "$SDECFG_PKG_UCLIBC_SUSV4_LEGACY" = "1" ]; then
echo "X UCLIBC_SUSV4_LEGACY"
fi
# locale # locale
if [ "$SDECFG_DISABLE_NLS" = "0" ]; then if [ "$SDECFG_DISABLE_NLS" = "0" ]; then
echo "X UCLIBC_HAS_LOCALE" echo "X UCLIBC_HAS_LOCALE"

Loading…
Cancel
Save