diff options
author | Glenn L McGrath | 2000-12-10 01:57:30 +0000 |
---|---|---|
committer | Glenn L McGrath | 2000-12-10 01:57:30 +0000 |
commit | 46f44d24fcc25a5d6e13e0453485881bdf147e91 (patch) | |
tree | 669e07b8bbe267e0f6185509686f87b9e94aa71c /Config.h | |
parent | 00732b57c7392df0fad6fbe392628e3f2174ea57 (diff) | |
download | busybox-46f44d24fcc25a5d6e13e0453485881bdf147e91.zip busybox-46f44d24fcc25a5d6e13e0453485881bdf147e91.tar.gz |
Support for tar -z option for uncompressing only
Diffstat (limited to 'Config.h')
-rw-r--r-- | Config.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -225,6 +225,9 @@ // Enable support for "--exclude" and "-X" for excluding files #define BB_FEATURE_TAR_EXCLUDE // +// Enable support for tar -z option (currently only works for inflating) +#define BB_FEATURE_TAR_GZIP +// //// Enable reverse sort #define BB_FEATURE_SORT_REVERSE // @@ -324,6 +327,12 @@ #endif #endif // +#ifdef BB_FEATURE_TAR_GZIP +#ifndef BB_GUNZIP +#define BB_GUNZIP +#endif +#endif +// #if defined BB_MOUNT && defined BB_FEATURE_NFSMOUNT #define BB_NFSMOUNT #endif |