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.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://downloads.sourceforge.net/libtirpc/libtirpc-1.3.7.tar.bz2
Download MD5 sum: 74f97df306b8d6149d3d9898a1d44c6e
Download size: 560 KB
Estimated disk space required: 6.8 MB
Estimated build time: less than 0.1 SBU
MIT Kerberos V5-1.22.1 for GSSAPI support
Install libtirpc by running the following commands:
./configure --prefix=/usr \ --sysconfdir=/etc \ --disable-static \ --disable-gssapi && make CC="gcc -std=gnu17"
This package does not come with a test suite.
Now, as the root
user:
make install
CC="gcc -std=gnu17"
: this is used to
overcome an issue with gcc-15. This version of gcc uses
-std=gnu23
by default which exposes
several issues in the source code.
--disable-static
: This
switch prevents installation of static versions of the libraries.
--disable-gssapi
: This
switch is needed if no GSSAPI providers are installed, such as
MIT Kerberos V5-1.22.1. Remove this
switch if you have installed MIT
Kerberos V5-1.22.1 and you need to use the GSSAPI support.