diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:04:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-11-05 05:04:23 +0000 |
commit | 1e4f229f0e3927fe9741557dc4e4f867e8536a18 (patch) | |
tree | bb435982f7c1f85600879f4ddff91c685f0412b3 /extra/Configs/Config.in | |
parent | f8bc724a4d89aaf364bb1dbdb10a694b4ae35bef (diff) |
Yet more messing with selecting sane default configs
Diffstat (limited to 'extra/Configs/Config.in')
-rw-r--r-- | extra/Configs/Config.in | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index a652b148c..82d6bb700 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -135,9 +135,13 @@ config DOPIC answer Y here. If you only want to build uClibc as a static library, then answer N. +config HAVE_NO_SHARED + bool + default n + config HAVE_SHARED bool "Enable support for shared libraries" - depends on DOPIC + depends on DOPIC && !HAVE_NO_SHARED default y help If you wish to build uClibc with support for shared libraries then @@ -238,8 +242,13 @@ config UCLIBC_PROFILING size and performance penalty to profiling your applications this way, so most people should answer N. +config HAS_NO_THREADS + bool + default n + config UCLIBC_HAS_THREADS bool "POSIX Threading Support" + depends on !HAS_NO_THREADS default y help If you want to compile uClibc with pthread support, then answer Y. |