svn commit: trunk/uClibc/extra/Configs
carmelo at uclibc.org
carmelo at uclibc.org
Fri Feb 20 14:37:44 UTC 2009
Author: carmelo
Date: 2009-02-20 14:37:43 +0000 (Fri, 20 Feb 2009)
New Revision: 25399
Log:
Linuxthreads_old and NPTL must be mutually exclusive.
TLS support cannot be enabled when using Linuxthreads_old
(at least until Linuxthreads and Linuxthreads_old will not
me merged togheter)
Signed-off-by: Carmelo Amoroso <carmelo.amoroso at st.com>
Modified:
trunk/uClibc/extra/Configs/Config.in
Changeset:
Modified: trunk/uClibc/extra/Configs/Config.in
===================================================================
--- trunk/uClibc/extra/Configs/Config.in 2009-02-20 14:14:14 UTC (rev 25398)
+++ trunk/uClibc/extra/Configs/Config.in 2009-02-20 14:37:43 UTC (rev 25399)
@@ -374,7 +374,7 @@
config UCLIBC_HAS_TLS
bool "Thread-Local Storage"
- depends on UCLIBC_HAS_THREADS
+ depends on UCLIBC_HAS_THREADS && !LINUXTHREADS_OLD
default n
help
If you want to enable TLS support then answer Y.
@@ -402,7 +402,7 @@
config LINUXTHREADS_OLD
bool "Use the older (stable) version of linuxthreads"
default y
- depends on UCLIBC_HAS_THREADS
+ depends on UCLIBC_HAS_THREADS && !UCLIBC_HAS_THREADS_NATIVE
help
There are two versions of linuxthreads. The older (stable) version
has been in uClibc for quite a long time but hasn't seen too many
More information about the uClibc-cvs
mailing list