summaryrefslogtreecommitdiff
path: root/scripts/build/libc/uClibc.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/build/libc/uClibc.sh')
-rw-r--r--scripts/build/libc/uClibc.sh7
1 files changed, 7 insertions, 0 deletions
diff --git a/scripts/build/libc/uClibc.sh b/scripts/build/libc/uClibc.sh
index 1868a79..f5b871c 100644
--- a/scripts/build/libc/uClibc.sh
+++ b/scripts/build/libc/uClibc.sh
@@ -427,6 +427,13 @@ manage_uClibc_config() {
CT_KconfigDisableOption "UCLIBC_HAS_WCHAR" "${dst}"
fi
+ # IPv6 support
+ if [ "${CT_LIBC_UCLIBC_IPV6}" = "y" ]; then
+ CT_KconfigEnableOption "UCLIBC_HAS_IPV6" "${dst}"
+ else
+ CT_KconfigDisableOption "UCLIBC_HAS_IPV6" "${dst}"
+ fi
+
# Force on options needed for C++ if we'll be making a C++ compiler.
# I'm not sure locales are a requirement for doing C++... Are they?
if [ "${CT_CC_LANG_CXX}" = "y" ]; then