LZO is a data compression library which is suitable for data decompression and compression in real-time. This means it favors speed over compression ratio.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): http://www.oberhumer.com/opensource/lzo/download/lzo-2.09.tar.gz
Download MD5 sum: c7ffc9a103afe2d1bba0b015e7aa887f
Download size: 584 KB
Estimated disk space required: 8.4 MB
Estimated build time: 0.2 SBU (additional 0.2 SBU to run the tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/lzo
Install LZO by running the following commands:
./configure --prefix=/usr                    \
            --enable-shared                  \
            --disable-static                 \
            --docdir=/usr/share/doc/lzo-2.09 &&
make
        To test the results, issue: make check. All the checks should pass. Now issue make test to run the full suite of tests.
          Now, as the root user:
        
make install
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
Last updated on 2015-02-20 16:04:13 -0800