From 89fcd96702d6aa963192f0221922d2702820048f Mon Sep 17 00:00:00 2001 From: Matei Zaharia Date: Sat, 13 Nov 2010 22:07:08 -0800 Subject: Initial work to get Spark compiling with SBT 0.7.5 RC0 --- lib/liblzf-3.5/README | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 lib/liblzf-3.5/README (limited to 'lib/liblzf-3.5/README') diff --git a/lib/liblzf-3.5/README b/lib/liblzf-3.5/README new file mode 100644 index 0000000000..b5379a3892 --- /dev/null +++ b/lib/liblzf-3.5/README @@ -0,0 +1,29 @@ +DESCRIPTION + LZF is an extremely fast (not that much slower than a pure memcpy) + compression algorithm. It is ideal for applications where you want to + save *some* space but not at the cost of speed. It is ideal for + repetitive data as well. The module is self-contained and very small. + + It's written in ISO-C with no external dependencies other than what + C provides and can easily be #include'd into your code, no makefile + changes or library builds requires. + + A C♯ implementation without external dependencies is available, too. + + I do not know for certain wether any patents in any countries apply + to this algorithm, but at the moment it is believed that it is free + from any patents. More importantly, it is also free to use in every + software package (see LICENSE). + + See the lzf.h file for details on how the functions in this + mini-library are to be used. + + NOTE: This package contains a very bare-bones command-line utility + which is neither optimized for speed nor for compression. This library + is really intented to be used inside larger programs. + +AUTHOR + This library was written by Marc Lehmann (See also + http://software.schmorp.de/pkg/liblzf). + + -- cgit v1.2.3