add more threading options
authorMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 23:14:19 +0000 (23:14 -0000)
committerMike Frysinger <vapier@gentoo.org>
Wed, 7 Dec 2005 23:14:19 +0000 (23:14 -0000)
toolchain/uClibc/Config.in

index b364aaed2ac70812b0192856156368479acd5fca..71b222fb50395f2260f4ab6f8fa45a947f1572b0 100644 (file)
@@ -22,16 +22,21 @@ config BR2_ENABLE_LOCALE
        help
            Enable locale/gettext/i18n support?
 
-config BR2_PTHREADS
-       bool "Enable thread support"
-       default y
+choice
+       prompt "Thread library implementation"
+       default BR2_PTHREADS_OLD
        help
-           Enable support for libpthreads
+         Select the version of libpthreads you want to use.
 
-config BR2_PTHREADS_NATIVE
-       bool "Enable Native POSIX Threading (NPTL) support?"
-       default n
-       depends on BR2_PTHREADS
-       help
-           Enable Native POSIX Threading (NPTL) support?
+       config BR2_PTHREADS_NONE
+               bool "none"
+
+       config BR2_PTHREADS
+               bool "linuxthreads"
+
+       config BR2_PTHREADS_OLD
+               bool "linuxthreads (stable/old)"
 
+       config BR2_PTHREADS_NATIVE
+               bool "Native POSIX Threading (NPTL)"
+endchoice