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.4 platform.
Download (HTTP): http://www.infradead.org/~tgr/libnl/files/libnl-3.2.22.tar.gz
Download MD5 sum: 2e1c889494d274aca24ce5f6a748e66e
Download size: 716 KB
Estimated disk space required: 25 MB
Estimated build time: 0.3 SBU
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
--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 2013-09-04 14:37:09 -0700