summaryrefslogtreecommitdiff
path: root/Config.h
diff options
context:
space:
mode:
authorGlenn L McGrath <bug1@ihug.co.nz>2000-12-10 01:57:30 +0000
committerGlenn L McGrath <bug1@ihug.co.nz>2000-12-10 01:57:30 +0000
commit46f44d24fcc25a5d6e13e0453485881bdf147e91 (patch)
tree669e07b8bbe267e0f6185509686f87b9e94aa71c /Config.h
parent00732b57c7392df0fad6fbe392628e3f2174ea57 (diff)
downloadbusybox-w32-46f44d24fcc25a5d6e13e0453485881bdf147e91.tar.gz
busybox-w32-46f44d24fcc25a5d6e13e0453485881bdf147e91.tar.bz2
busybox-w32-46f44d24fcc25a5d6e13e0453485881bdf147e91.zip
Support for tar -z option for uncompressing only
Diffstat (limited to 'Config.h')
-rw-r--r--Config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/Config.h b/Config.h
index 50f9e3ac7..d95942a65 100644
--- a/Config.h
+++ b/Config.h
@@ -225,6 +225,9 @@
225// Enable support for "--exclude" and "-X" for excluding files 225// Enable support for "--exclude" and "-X" for excluding files
226#define BB_FEATURE_TAR_EXCLUDE 226#define BB_FEATURE_TAR_EXCLUDE
227// 227//
228// Enable support for tar -z option (currently only works for inflating)
229#define BB_FEATURE_TAR_GZIP
230//
228//// Enable reverse sort 231//// Enable reverse sort
229#define BB_FEATURE_SORT_REVERSE 232#define BB_FEATURE_SORT_REVERSE
230// 233//
@@ -324,6 +327,12 @@
324#endif 327#endif
325#endif 328#endif
326// 329//
330#ifdef BB_FEATURE_TAR_GZIP
331#ifndef BB_GUNZIP
332#define BB_GUNZIP
333#endif
334#endif
335//
327#if defined BB_MOUNT && defined BB_FEATURE_NFSMOUNT 336#if defined BB_MOUNT && defined BB_FEATURE_NFSMOUNT
328#define BB_NFSMOUNT 337#define BB_NFSMOUNT
329#endif 338#endif