# HG changeset patch # User "Yann E. MORIN" # Date 1251644070 -7200 # Node ID 472cfde636a1b51fc108db4e32b36def87952c51 # Parent 3bf289921a802e0dc8524e818bdb479f63329620 config: move the "build shared libraries" option to the OS menu The "Build shared libraries" config option is dependant on the type of "Target OS". Moving this options to the "Target OS" sub-menu is also better in the user perspective: he/she no longer needs to go back and forth to see if he/she missed any option. diff -r 3bf289921a80 -r 472cfde636a1 config/kernel.in --- a/config/kernel.in Sun Aug 30 16:50:30 2009 +0200 +++ b/config/kernel.in Sun Aug 30 16:54:30 2009 +0200 @@ -23,4 +23,17 @@ source config.gen/kernel.in +comment "Common kernel options" + +config SHARED_LIBS + bool + prompt "Build shared libraries" + depends on KERNEL_SUPPORTS_SHARED_LIBS + default y + help + Say 'y' here, unless you don't want shared libraries. + + You might not want shared libraries if you're building for a target that + don't support it (maybe some nommu targets, for example, or bare metal). + endmenu diff -r 3bf289921a80 -r 472cfde636a1 config/toolchain.in --- a/config/toolchain.in Sun Aug 30 16:50:30 2009 +0200 +++ b/config/toolchain.in Sun Aug 30 16:54:30 2009 +0200 @@ -28,17 +28,6 @@ In fact, the sysroot path is constructed as: ${CT_PREFIX_DIR}/${CT_TARGET}/${CT_SYSROOT_DIR_PREFIX}/sys-root -config SHARED_LIBS - bool - prompt "Build shared libraries" - depends on KERNEL_SUPPORTS_SHARED_LIBS - default y - help - Say 'y' here, unless you don't want shared libraries. - - You might not want shared libraries if you're building for a target that - don't support it (maybe some nommu targets, for example, or bare metal). - comment "Tuple completion and aliasing" config TARGET_VENDOR