diff options
author | Denis Vlasenko | 2007-03-26 13:35:09 +0000 |
---|---|---|
committer | Denis Vlasenko | 2007-03-26 13:35:09 +0000 |
commit | 53091ecd20c294f0e0757a5f4e0d5c8c7b23b555 (patch) | |
tree | f4ae0be26d5debff091d2c976e77fa8050c6758c /archival/libunarchive | |
parent | ec1a4b5a521b5adf295bc757c25231910f8c854b (diff) | |
download | busybox-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')
-rw-r--r-- | archival/libunarchive/Kbuild | 8 |
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 |