You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-text/pinfo/files/pinfo-0.6.9-lzma-xz.patch

22 lines
614 B

--- a/src/filehandling_functions.c
+++ b/src/filehandling_functions.c
@@ -41,14 +41,16 @@
* you dump the file through `gunzip -d -c', etc. *
******************************************************************************/
-#define SuffixesNumber 4
+#define SuffixesNumber 6
Suffixes suffixes[SuffixesNumber] =
{
{"", "cat"},
{".gz", "gzip -d -q -c"},
{".Z", "gzip -d -q -c"},
- {".bz2", "bzip2 -d -c"}
+ {".bz2", "bzip2 -d -c"},
+ {".lzma", "lzma -d -c"},
+ {".xz", "xz -d -c"}
};
/*****************************************************************************/