diff options
| author | root <root> | 2002-11-17 11:39:26 +0000 | 
|---|---|---|
| committer | root <root> | 2002-11-17 11:39:26 +0000 | 
| commit | a5156802847844542cf63b3cbbbe306936425ae5 (patch) | |
| tree | de50894a39f62893e6a89c8e6ca8589198232d61 | |
| parent | bbceaa6c2bb778a19e3a35543fe9726a7b88584d (diff) | |
*** empty log message ***
| -rw-r--r-- | Changes | 7 | ||||
| -rw-r--r-- | LICENSE | 2 | ||||
| -rw-r--r-- | Makefile.in | 2 | ||||
| -rw-r--r-- | lzf.c | 2 | ||||
| -rw-r--r-- | lzf.h | 6 | ||||
| -rw-r--r-- | lzfP.h | 2 | ||||
| -rw-r--r-- | lzf_c.c | 2 | ||||
| -rw-r--r-- | lzf_d.c | 2 | 
8 files changed, 11 insertions, 14 deletions
| @@ -1,6 +1,7 @@ -0.5 +1.0  Sun Nov 17 12:37:37 CET 2002  	- slightly better compression ratio, almost unmeasurably            slower. +        - some documentation fixes.  0.4  Thu Jun 13 14:11:10 CEST 2002  	- typoe fix. @@ -11,9 +12,9 @@  	- fix silly beginners 32/64 bit mistake.  0.2  Thu Jan  4 05:56:42 CET 2001 -	- now totally indepdendent of autoconfig, for +	- now totally independent of autoconfig, for            easy inclusion into other programs.          - much better fine-tuning, faster and better than 0.1. -0.1 +0.1  2000  	- initial release. @@ -1,4 +1,4 @@ -Copyright (c) 2000,2001 Marc Alexander Lehmann <pcg@goof.com> +Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>  Redistribution and use in source and binary forms, with or without modifica-  tion, are permitted provided that the following conditions are met: diff --git a/Makefile.in b/Makefile.in index 9644125..2b9e0a2 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,4 +1,4 @@ -VERSION = 0.4 +VERSION = 1.0  prefix = @prefix@  exec_prefix = @exec_prefix@ @@ -1,5 +1,5 @@  /* - * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>   *    * Redistribution and use in source and binary forms, with or without modifica-   * tion, are permitted provided that the following conditions are met: @@ -1,5 +1,5 @@  /* - * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>   *    * Redistribution and use in source and binary forms, with or without modifica-   * tion, are permitted provided that the following conditions are met: @@ -34,10 +34,6 @@  **	lzf -- an extremely fast/free compression/decompression-method  **	http://liblzf.plan9.de/  ** -**	Based on ideas by Hermann Vogt, but liblzf is a total -**	re-implementation of LZV that is not compatible to the -**	original lzv code. -**  **	This algorithm is believed to be patent-free.  **  ***********************************************************************/ @@ -1,5 +1,5 @@  /* - * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>   *    * Redistribution and use in source and binary forms, with or without modifica-   * tion, are permitted provided that the following conditions are met: @@ -1,5 +1,5 @@  /* - * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>   *    * Redistribution and use in source and binary forms, with or without modifica-   * tion, are permitted provided that the following conditions are met: @@ -1,5 +1,5 @@  /* - * Copyright (c) 2000 Marc Alexander Lehmann <pcg@goof.com> + * Copyright (c) 2000-2002 Marc Alexander Lehmann <pcg@goof.com>   *    * Redistribution and use in source and binary forms, with or without modifica-   * tion, are permitted provided that the following conditions are met: | 
