aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-07-09 21:24:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-07-09 21:24:18 +0000
commitfc5e80651fa98d781173fc2955c04c2321ec8cfd (patch)
tree8ff4950c4c33ce40b817eb95b2f9f645fdc1246a
parent9764d6908a9e613f9192e0a3e642e1b0017e521d (diff)
downloadbusybox-w32-fc5e80651fa98d781173fc2955c04c2321ec8cfd.tar.gz
busybox-w32-fc5e80651fa98d781173fc2955c04c2321ec8cfd.tar.bz2
busybox-w32-fc5e80651fa98d781173fc2955c04c2321ec8cfd.zip
build system: libbusybox cannot be static
-rw-r--r--Config.in6
1 files changed, 3 insertions, 3 deletions
diff --git a/Config.in b/Config.in
index 416ffaad4..30207c568 100644
--- a/Config.in
+++ b/Config.in
@@ -298,7 +298,7 @@ config NOMMU
298config BUILD_LIBBUSYBOX 298config BUILD_LIBBUSYBOX
299 bool "Build shared libbusybox" 299 bool "Build shared libbusybox"
300 default n 300 default n
301 depends on !FEATURE_PREFER_APPLETS && !PIE 301 depends on !FEATURE_PREFER_APPLETS && !PIE && !STATIC
302 help 302 help
303 Build a shared library libbusybox.so.N.N.N which contains all 303 Build a shared library libbusybox.so.N.N.N which contains all
304 busybox code. 304 busybox code.
@@ -330,7 +330,7 @@ config BUILD_LIBBUSYBOX
330config FEATURE_INDIVIDUAL 330config FEATURE_INDIVIDUAL
331 bool "Produce a binary for each applet, linked against libbusybox" 331 bool "Produce a binary for each applet, linked against libbusybox"
332 default y 332 default y
333 depends on !STATIC && BUILD_LIBBUSYBOX 333 depends on BUILD_LIBBUSYBOX
334 help 334 help
335 If your CPU architecture doesn't allow for sharing text/rodata 335 If your CPU architecture doesn't allow for sharing text/rodata
336 sections of running binaries, but allows for runtime dynamic 336 sections of running binaries, but allows for runtime dynamic
@@ -348,7 +348,7 @@ config FEATURE_INDIVIDUAL
348config FEATURE_SHARED_BUSYBOX 348config FEATURE_SHARED_BUSYBOX
349 bool "Produce additional busybox binary linked against libbusybox" 349 bool "Produce additional busybox binary linked against libbusybox"
350 default y 350 default y
351 depends on !STATIC && BUILD_LIBBUSYBOX 351 depends on BUILD_LIBBUSYBOX
352 help 352 help
353 Build busybox, dynamically linked against libbusybox.so.N.N.N. 353 Build busybox, dynamically linked against libbusybox.so.N.N.N.
354 354