The libtirpc package contains libraries that support programs that use the Remote Procedure Call (RPC) API. It replaces the RPC, but not the NIS library entries that used to be in glibc.
This package is known to build and work properly using an LFS-7.5 platform.
Download (HTTP): http://downloads.sourceforge.net/project/libtirpc/libtirpc/0.2.4/libtirpc-0.2.4.tar.bz2
Download MD5 sum: 847995e8d002cbf1387bda05947be086
Download size: 448 KB
Estimated disk space required: 8.0 MB
Estimated build time: 0.2 SBU
MIT Kerberos V5-1.12.1 for the GSSAPI
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/libtirpc
Install libtirpc by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-static \ --disable-gssapi && make
This package does not come with a test suite.
Now, as the root
user:
make install && mv -v /usr/lib/libtirpc.so.* /lib && ln -sfv ../../lib/libtirpc.so.1.0.10 /usr/lib/libtirpc.so
--disable-static
: This
switch prevents installation of static versions of the libraries.
--disable-gssapi
: This
switch is needed if no GSSAPI is installed. Remove this switch if
you have one installed (for example MIT
Kerberos V5-1.12.1) and you wish to use it.
mv -v /usr/lib/libtirpc.so.* ...: Move shared libraries into /lib so they are available before /usr is mounted.
Last updated on 2014-02-20 13:24:55 -0800