Librpcsecgss: Difference between revisions
From CBLFS
Jump to navigationJump to search
No edit summary |
|||
| Line 36: | Line 36: | ||
Configure and compile the package: | Configure and compile the package: | ||
CC="gcc ${BUILD32}" ./configure --prefix=/usr && | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
./configure --prefix=/usr && | |||
make | make | ||
| Line 52: | Line 53: | ||
Configure and compile the package: | Configure and compile the package: | ||
CC="gcc ${BUILDN32}" ./configure --prefix=/usr | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib32 && | |||
make | make | ||
| Line 69: | Line 70: | ||
Configure and compile the package: | Configure and compile the package: | ||
CC="gcc ${ | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
./configure --prefix=/usr --libdir=/usr/lib64 && | |||
make | make | ||
Revision as of 11:58, 16 November 2008
| 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