Difference between revisions of "Libcap"

From CBLFS
Jump to navigationJump to search
m (Added Dep)
m (Dependencies)
Line 8: Line 8:
  
 
== Dependencies ==
 
== Dependencies ==
* [[Gpref]]
+
* [[Gperf]]
  
 
== Non-Multilib ==
 
== Non-Multilib ==

Revision as of 12:17, 9 February 2008

Download Source: http://www.kernel.org/pub/linux/libs/security/linux-privs/kernel-2.6/libcap-2.22.tar.gz

Dependencies

Non-Multilib

Compile the package:

make

Install the package

make install &&
chmod -v 755 /lib/libcap.so.2.22

Multilib

32Bit

Compile the package:

make CC="gcc ${BUILD32} -fPIC" LD="ld ${LD_BUILD32}"

Install the package

make install &&
chmod -v 755 /lib/libcap.so.2.22

N32

Compile the package:

make CC="gcc ${BUILDN32} -fPIC" LD="ld ${LD_BUILDN32}"

Install the package

make LIBDIR=/lib32 install &&
chmod -v 755 /lib32/libcap.so.2.22

64Bit

Compile the package:

make CC="gcc ${BUILD64} -fPIC" LD="ld ${LD_BUILD64}" 

Install the package

make LIBDIR=/lib64 install &&
chmod -v 755 /lib64/libcap.so.2.22