Sophie

Sophie

distrib > Mandriva > 2009.0 > i586 > by-pkgid > 8cecc1f3605061550f8f3f20102daed5 > files > 2

pinfo-0.6.9-5mdv2009.0.src.rpm

--- pinfo-0.6.9/doc/pinfo.1.in.lzma_support	2007-09-24 20:47:59.000000000 +0200
+++ pinfo-0.6.9/doc/pinfo.1.in	2007-09-24 20:48:21.000000000 +0200
@@ -19,7 +19,8 @@ The program will then (by default) searc
 and
 .IR "/opt/info".
 The search path can be adjusted by INFOPATH environment variable or in the configuration
-file. Pinfo will also automatically add the suffix '-info', '-info.Z', '-info.gz', or '-info.bz2'.
+file. Pinfo will also automatically add the suffix '-info', '-info.Z', '-info.gz', '-info.bz2'
+or '-info.lzma'.
 At present other suffixes are not recognized, but you can easily add them to
 the function 
 .I openinfo() 
--- pinfo-0.6.9/doc/pinfo.1.lzma_support	2007-09-24 20:44:22.000000000 +0200
+++ pinfo-0.6.9/doc/pinfo.1	2007-09-24 20:45:54.000000000 +0200
@@ -19,7 +19,8 @@ The program will then (by default) searc
 and
 .IR "/opt/info".
 The search path can be adjusted by INFOPATH environment variable or in the configuration
-file. Pinfo will also automatically add the suffix '-info', '-info.Z', '-info.gz', or '-info.bz2'.
+file. Pinfo will also automatically add the suffix '-info', '-info.Z', '-info.gz', '-info.bz2'
+or '-info.lzma'.
 At present other suffixes are not recognized, but you can easily add them to
 the function 
 .I openinfo() 
--- pinfo-0.6.9/doc/pinfo.texi.lzma_support	2007-09-24 20:44:16.000000000 +0200
+++ pinfo-0.6.9/doc/pinfo.texi	2007-09-24 20:49:35.000000000 +0200
@@ -108,8 +108,8 @@ will then (by default) search for it in 
 and @file{/opt/info}. Other searchpath may be
 specified in configfile or via INFOPATH environmental variable.
 Pinfo will also automaticaly add the suffix
-@samp{-info}, @samp{-info.Z}, @samp{-info.gz}, or @samp{-info.bz2}. At
-present other suffixes are not recognized, but you can easily add them
+@samp{-info}, @samp{-info.Z}, @samp{-info.gz}, @samp{-info.bz2} or @samp{-info.lzma}.
+At present other suffixes are not recognized, but you can easily add them
 to the function @code{openinfo()} in @file{filehandling_functions.c}.
 
 When the search for info pages fails, man is called with the @var{info_page}
--- pinfo-0.6.9/src/filehandling_functions.c.lzma_support	2006-03-16 16:15:02.000000000 +0100
+++ pinfo-0.6.9/src/filehandling_functions.c	2007-09-24 21:26:53.000000000 +0200
@@ -41,14 +41,15 @@ char * basename(char *filename);
  * you dump the file through `gunzip -d -c', etc.                              *
  ******************************************************************************/
 
-#define SuffixesNumber 4
+#define SuffixesNumber 5
 
 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 -q -c"}
 };
 
 /*****************************************************************************/