⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 news

📁 lzo-1.08-src.zip 高效的压缩解压代码
💻
字号:
============================================================================User visible changes for LZO -- a real-time data compression library============================================================================Changes in 1.08 (12 Jul 2002)  * much better support for cross compiling  * straighten out ANSI-conforming compiler checks  * avoid harmless compiler warnings reported by -Wcast-align  * fixed some sign extension problems on rather exotic machines where    sizeof(size_t) < sizeof(ptrdiff_t) and sizeof(lzo_uint) == sizeof(size_t)  * updated the configure system to use the latest Autoconf, Automake    and Libtool versionsChanges in 1.07 (18 Oct 2000)  * Default to `--disable-shared' (I'm getting tired of Libtool's    shared library build problems, this time AIX was the culprit)  * As usual, updated the configure system to use the latest    Autoconf, Automake and Libtool versions.  * avoid some harmless compiler warnings.Changes in 1.06 (29 Nov 1999)  * Updated the configure system to use Autoconf 2.13, Automake 1.4 and    Libtool 1.3.3. This should hopefully fix the shared-library build    problems that were reported on some machines.  * enhanced example programs a little bitChanges in 1.05 (14 Apr 1998)  * just a one-line change in the configure script to workaround    a HPUX and IRIX building problemChanges in 1.04 (15 Mar 1998)  * workaround a bug in cpp under HPUX 10.20  * adapted for Automake 1.2f and Libtool 1.1Changes in 1.03 (18 Jan 1998)  * minor compression ratio improvement  * extended example program to show how to do overlapping compression  * assembler changes, added support for the nasm assembler  * better support for cross-compiling  * some cleanupsChanges in 1.02 (07 Dec 1997)  * improved LZO1X-999 and LZO1Y-999 compression ratio a little bit again  * introduced compression levels for LZO1X-999 and LZO1Y-999  * added support for preset dictionaries  * implemented LZO1X-1(12): needs 16 kB for compression  * new algorithm LZO1Z: this is another variant of LZO1X  * added example program: how to use preset dictionaries  * added example program: how to do in-place decompression  * added a little file-packer example program  * LZO now works cleanly under checkergcc  * strict 16-bit memory model is working (but not officially supported)  * shared libraries are supported on many platforms  * adapted for Automake 1.2d and Libtool 1.0hChanges in 1.01 (10 Aug 1997)  * improved LZO1X-999 and LZO1Y-999 compression ratio a little bit  * i386+gcc: significant speedup of the C version of the LZO1, LZO1A,    LZO1B and LZO1C decompressors  * added example programs that show how to generate pre-compressed data  * added Makefiles for DOS, Windows and OS/2 targetsChanges in 1.00 (13 Jul 1997)  * added miniLZO - can be easily included in your project  * improved documentation, added LZO.FAQ  * added build scripts for many systems where Autoconf is not available:    Windows 3.1 (LIB+DLL), Windows 95/NT (LIB+DLL), DOS (16+32 bit), OS/2  * adapted for Automake 1.2 and Libtool 1.0Changes in 0.90 (27 Jun 1997): never released  * LZO now uses GNU Automake 1.0 - lots of configuration changes  * added LZO1X-1(11): this version needs only 8 kB for compression  * implemented LZO1Y-1  * added i386 assembler decompressors for MASM/TASM/WASM  * the name of some assembler functions changed  * the numeric value of some error codes changed  * portability fixesChanges in 0.29 (04 May 1997)  * Linux ELF shared library support  * workaround for gcc 2.7.2 optimizer bug under AIX  * added lzo_crc32() checksumChanges in 0.28 (22 Feb 1997)  * new algorithm LZO1Y: LZO1Y-999 and LZO1Y decompressor  * added lzo1x_optimize() and lzo1y_optimize()  * minor speedup in assembler decompressors (i386+gcc)  * ltest.c rewrittenChanges in 0.27 (19 Jan 1997)  * fixed a bug in LZO1B-999 and LZO1C-999 that could produce    invalid compressed data in very rare casesChanges in 0.26 (18 Jan 1997): never released  * implemented LZO1B-999  * renamed LZO1D to LZO2A (also updated all docs)  * some cleanupsChanges in 0.25 (28 Dec 1996): never released  * some portability fixes (LZO now works on my old Atari ST :-)  * adapted for Autoconf 2.12Changes in 0.24 (30 Nov 1996): never released  * improved performance of LZO1X assembler decompressor on a Pentium (i386+gcc)Changes in 0.23 (23 Nov 1996)  * added LZO1C, LZO1F and LZO1X decompressors in assembler (i386+gcc)  * added corresponding LZO_PUBLIC to all LZO_EXTERN functions  * added support for Microsoft C 7.0 (16-bit DOS)  * introduced lzo_uint32. This could prove useful for a strict 16-bit    version that doesn't use `huge' pointers.  * all algorithms use incremental hashing now  * some cleanups and portability fixesChanges in 0.22 (19 Sep 1996)  * LZO1X: minor decompressor speedup, added some checks in safe decompressor  * Autoconf: added detection of gcc strength-reduction bug  * Makefile changesChanges in 0.21 (08 Sep 1996)  * LZO now uses GNU Autoconf 2.10 - lots of configuration changes  * a few cosmetical changesChanges in 0.20 (11 Aug 1996)  * new algorithm LZO1X: LZO1X-1, LZO1X-999 and LZO1X decompressor  * significantly speeded up LZO1B, LZO1C and LZO1F decompressors    on CPUs which allow unaligned memory access (e.g. Intel i386)  * greatly speeded up LZO2A-999 compressor at the cost of some memory  * some cleanups, portability fixes and minor speedupsChanges in 0.16 (22 Jul 1996)  * speeded up LZO1F decompressor a little bit  * improved LZO1F-999 compression ratioChanges in 0.15 (10 Jul 1996)  * new algorithm LZO1F: LZO1F-1, LZO1F-999 and LZO1F decompressor  * improved LZO2A-999 compression ratio  * removed LZO1E as it is dominated by LZO1FChanges in 0.14 (06 Jul 1996): never released  * experimental algorithms: LZO1E and LZO1F  * added LZO_EXTERN to all prototypes. Useful when building a DLL.  * improved LZO1C-999 and LZO2A-999 compression ratio a little bit  * fixed progress indicator callback (it was called only once)Changes in 0.13 (20 Jun 1996)  * some speed improvements in LZO1C-999 and LZO2A-999Changes in 0.12 (18 Jun 1996): never released  * added LZO1C-999, a slow but nearly optimal compressor    intended for generating pre-compressed data  * added tests for lookbehind-overrun in all safe decompressors  * source tree completely rearranged, some filenames changed  * extensions changed: a .ch file is a C source code that is included    for reasons of code sharing  * new algorithm LZO2A: LZO2A-999 and LZO2A decompressor. There is    no fast compressor yet.  * some cleanupsChanges in 0.11 (29 May 1996)  * source tree rearranged  * LZO now compiles fine as a C++ library (interface still has C linkage)  * improved overall compression ratio a little bit  * LZO1B-99/LZO1C-99 now search for longer matches  * incremental hash is working, it's a little bit faster  * Makefile changed  * added lzo_uint and lzo_sizeof in some places  * split LZO1B compressor into even more include-filesChanges in 0.10 (20 May 1996): first public release of the LZO library  * includes LZO1, LZO1A, LZO1B and LZO1C algorithms    (compression levels 1-9 and 99)14 Mar 1996:  * public release of the LZO1A algorithm04 Mar 1996:  * public release of the LZO1 algorithm

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -