summaryrefslogtreecommitdiff
path: root/archival/libunarchive/Kbuild
diff options
context:
space:
mode:
authorDenis Vlasenko2007-03-26 13:35:09 +0000
committerDenis Vlasenko2007-03-26 13:35:09 +0000
commit53091ecd20c294f0e0757a5f4e0d5c8c7b23b555 (patch)
treef4ae0be26d5debff091d2c976e77fa8050c6758c /archival/libunarchive/Kbuild
parentec1a4b5a521b5adf295bc757c25231910f8c854b (diff)
downloadbusybox-53091ecd20c294f0e0757a5f4e0d5c8c7b23b555.zip
busybox-53091ecd20c294f0e0757a5f4e0d5c8c7b23b555.tar.gz
Attempt to get more applets compile for NOMMU.
TODO_config_nommu documents what I managed to compile so far (yay! msh works! cool). inetd, telnetd, httpd still do not compile. TODO Also make fork(), daemon() produce warnings on compile stage (in addition to erros on link stage).
Diffstat (limited to 'archival/libunarchive/Kbuild')
-rw-r--r--archival/libunarchive/Kbuild8
1 files changed, 7 insertions, 1 deletions
diff --git a/archival/libunarchive/Kbuild b/archival/libunarchive/Kbuild
index 4e14541..010043c 100644
--- a/archival/libunarchive/Kbuild
+++ b/archival/libunarchive/Kbuild
@@ -26,7 +26,6 @@ lib-y:= \
\
data_align.o \
find_list_entry.o \
- open_transformer.o \
init_handle.o
GUNZIP_FILES:= check_header_gzip.o decompress_unzip.o
@@ -36,6 +35,13 @@ DPKG_FILES:= \
get_header_tar.o \
filter_accept_list_reassign.o
+# open_transformer uses fork. Compile it only if absolutely necessary
+lib-$(CONFIG_RPM) += open_transformer.o
+lib-$(CONFIG_FEATURE_TAR_BZIP2) += open_transformer.o
+lib-$(CONFIG_FEATURE_TAR_LZMA) += open_transformer.o
+lib-$(CONFIG_FEATURE_TAR_GZIP) += open_transformer.o
+lib-$(CONFIG_FEATURE_TAR_COMPRESS) += open_transformer.o
+
lib-$(CONFIG_AR) += get_header_ar.o unpack_ar_archive.o
lib-$(CONFIG_BUNZIP2) += decompress_bunzip2.o
lib-$(CONFIG_UNLZMA) += decompress_unlzma.o