Librpcsecgss

From CBLFS
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Download Source: http://www.citi.umich.edu/projects/nfsv4/linux/librpcsecgss/librpcsecgss-0.18.tar.gz

Introduction to Librpcsecgss

This library implements rpcsec_gss (RFC 2203) which allows secure rpc communication using gss-api security mechanisms.

Project Homepage: http://www.citi.umich.edu/projects/nfsv4/linux/librpcsecgss/

Dependencies

Required

Non-Multilib

Configure and compile the package:

./configure --prefix=/usr &&
make

Install the package:

make install

Relocate Libraries:

mv -v /usr/lib/librpcsecgss.so.3* /lib &&
ln -sfv ../../lib/librpcsecgss.so.3 /usr/lib/librpcsecgss.so

Multilib

32Bit

Configure and compile the package:

CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
./configure --prefix=/usr &&
make

Install the package:

make install

Relocate Libraries:

mv -v /usr/lib/librpcsecgss.so.3* /lib &&
ln -sfv ../../lib/librpcsecgss.so.3 /usr/lib/librpcsecgss.so

N32

Configure and compile the package:

CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
./configure --prefix=/usr  --libdir=/usr/lib32 &&
make

Install the package:

make install

Relocate Libraries:

mv -v /usr/lib32/librpcsecgss.so.3* /lib32 &&
ln -sfv ../../lib32/librpcsecgss.so.3 /usr/lib32/librpcsecgss.so

64Bit

Configure and compile the package:

CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
./configure --prefix=/usr --libdir=/usr/lib64 &&
make

Install the package:

make install

Relocate Libraries:

mv -v /usr/lib64/librpcsecgss.so.3* /lib64 &&
ln -sfv ../../lib64/librpcsecgss.so.3 /usr/lib64/librpcsecgss.so