diff options
author | Robert Griebl <griebl@gmx.de> | 2002-05-15 22:13:47 +0000 |
---|---|---|
committer | Robert Griebl <griebl@gmx.de> | 2002-05-15 22:13:47 +0000 |
commit | f6495eb7670063c0e9040c3eb3a0f1087d762a6a (patch) | |
tree | a53533813c8dc4c953532a679fc34d6903e0c3a0 /include/applets.h | |
parent | 7ac868460a90e1de4a2f45229f22f1cd07370c05 (diff) | |
download | busybox-w32-f6495eb7670063c0e9040c3eb3a0f1087d762a6a.tar.gz busybox-w32-f6495eb7670063c0e9040c3eb3a0f1087d762a6a.tar.bz2 busybox-w32-f6495eb7670063c0e9040c3eb3a0f1087d762a6a.zip |
Support old-style compress (.Z) files via libbb / unzip( ) calls
(configurable) - When enabled an applet "uncompress" is also made
available (oddname to gunzip)
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index aaac6a9d4..6d01901a3 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -467,6 +467,11 @@ | |||
467 | #ifdef CONFIG_UNAME | 467 | #ifdef CONFIG_UNAME |
468 | APPLET(uname, uname_main, _BB_DIR_BIN) | 468 | APPLET(uname, uname_main, _BB_DIR_BIN) |
469 | #endif | 469 | #endif |
470 | #ifdef CONFIG_GUNZIP | ||
471 | # ifdef CONFIG_FEATURE_UNCOMPRESS | ||
472 | APPLET_ODDNAME("uncompress", gunzip_main, _BB_DIR_BIN, gunzip) | ||
473 | # endif | ||
474 | #endif | ||
470 | #ifdef CONFIG_UNIQ | 475 | #ifdef CONFIG_UNIQ |
471 | APPLET(uniq, uniq_main, _BB_DIR_USR_BIN) | 476 | APPLET(uniq, uniq_main, _BB_DIR_USR_BIN) |
472 | #endif | 477 | #endif |