summaryrefslogtreecommitdiff
path: root/src/3rdparty/minilzo/README.LZO
diff options
context:
space:
mode:
Diffstat (limited to 'src/3rdparty/minilzo/README.LZO')
-rw-r--r--src/3rdparty/minilzo/README.LZO38
1 files changed, 14 insertions, 24 deletions
diff --git a/src/3rdparty/minilzo/README.LZO b/src/3rdparty/minilzo/README.LZO
index fd1ea8a3f..3700f28e3 100644
--- a/src/3rdparty/minilzo/README.LZO
+++ b/src/3rdparty/minilzo/README.LZO
@@ -1,6 +1,3 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
============================================================================
miniLZO -- mini subset of the LZO real-time data compression library
@@ -9,8 +6,8 @@ Hash: SHA1
Author : Markus Franz Xaver Johannes Oberhumer
<markus@oberhumer.com>
http://www.oberhumer.com/opensource/lzo/
- Version : 1.08
- Date : 12-Jul-2002
+ Version : 2.03
+ Date : 30 Apr 2008
I've created miniLZO for projects where it is inconvenient to
include (or require) the full LZO source code just because you
@@ -21,17 +18,16 @@ Hash: SHA1
for situations where you want to use pre-compressed data files (which
must have been compressed with LZO1X-999).
- miniLZO consists of one C source file and two header files:
+ miniLZO consists of one C source file and three header files:
minilzo.c
- minilzo.h
- lzoconf.h
+ minilzo.h, lzoconf.h, lzodefs.h
To use miniLZO just copy these files into your source directory, add
minilzo.c to your Makefile and #include minilzo.h from your program.
Note: you also must distribute this file (`README.LZO') with your project.
minilzo.o compiles to about 6 kB (using gcc or Visual C on a i386), and
- the sources are about 14 kB when packed with zip - so there's no more
+ the sources are about 30 kB when packed with zip - so there's no more
excuse that your application doesn't support data compression :-)
For more information, documentation, example programs and other support
@@ -96,12 +92,14 @@ Hash: SHA1
Checks for typedefs and structures
AC_CHECK_TYPE(ptrdiff_t,long)
AC_TYPE_SIZE_T
- AC_CHECK_SIZEOF(unsigned short)
- AC_CHECK_SIZEOF(unsigned)
- AC_CHECK_SIZEOF(unsigned long)
- AC_CHECK_SIZEOF(char *)
- AC_CHECK_SIZEOF(ptrdiff_t)
+ AC_CHECK_SIZEOF(short)
+ AC_CHECK_SIZEOF(int)
+ AC_CHECK_SIZEOF(long)
+ AC_CHECK_SIZEOF(long long)
+ AC_CHECK_SIZEOF(__int64)
+ AC_CHECK_SIZEOF(void *)
AC_CHECK_SIZEOF(size_t)
+ AC_CHECK_SIZEOF(ptrdiff_t)
Checks for compiler characteristics
AC_C_CONST
@@ -112,8 +110,8 @@ Hash: SHA1
Appendix D: Copyright
---------------------
- LZO and miniLZO are Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
- Markus Franz Xaver Johannes Oberhumer
+ LZO and miniLZO are Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002,
+ 2003, 2004, 2005, 2006, 2007, 2008 Markus Franz Xaver Johannes Oberhumer
LZO and miniLZO are distributed under the terms of the GNU General
Public License (GPL). See the file COPYING.
@@ -123,11 +121,3 @@ Hash: SHA1
are available by contacting the author.
-
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.0.7 (GNU/Linux)
-
-iD8DBQE9LPb4TWFXqwsgQ8kRAi/wAKCZ9Iej+voGhmKATaViOPS9chxGUwCgh5Dk
-uwMS2PQ7BXHT0vf4yz+3tTc=
-=PsNp
------END PGP SIGNATURE-----