The libnl suite is a collection of libraries providing APIs to netlink protocol based Linux kernel interfaces.
This package is known to build and work properly using an LFS-7.7 platform.
Download (HTTP): http://www.carisma.slowglass.com/~tgr/libnl/files/libnl-3.2.25.tar.gz
Download MD5 sum: 03f74d0cd5037cadc8cdfa313bbd195c
Download size: 816 KB
Estimated disk space required: 22 MB (additional 1 MB for the tests and 37MB for the API documentation)
Estimated build time: 0.4 SBU
Download (HTTP): http://www.carisma.slowglass.com/~tgr/libnl/files/libnl-doc-3.2.25.tar.gz
Download MD5 sum: 641f73052d9f54e720efe1a476a20237
Download size: 15 MB
Check-0.9.14 (for tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libnl
Install libnl by running the following commands:
./configure --prefix=/usr     \
            --sysconfdir=/etc \
            --disable-static  &&
make
        To test the results, issue: make check.
          Now, as the root user:
        
make install
          If you wish to install the API docummentation, as the root user:
        
mkdir -vp /usr/share/doc/libnl-3.2.25 &&
tar -xf ../libnl-doc-3.2.25.tar.gz --strip-components=1 --no-same-owner \
        -C /usr/share/doc/libnl-3.2.25
      
          --disable-static: This
          switch prevents installation of static versions of the libraries.
        
          --disable-cli: Use this parameter if
          you don't want to install cli tools provided by the package.
        
Last updated on 2015-02-19 19:11:38 -0800