Difference between revisions of "Device-mapper"

From CBLFS
Jump to navigationJump to search
(Non-Multilib)
Line 15: Line 15:
 
Compile the package:
 
Compile the package:
  
  ./configure --enable-pkgconfig &&
+
  ./configure --mandir=/usr/share/man --enable-dmeventd --enable-pkgconfig --disable-selinux &&
 
  make
 
  make
  

Revision as of 04:09, 20 July 2007

Download Source: ftp://sources.redhat.com/pub/dm/device-mapper.1.02.28.tgz

Introduction to Device-mapper

Project Homepage: Unknown

Dependencies

Non-Multilib

Compile the package:

./configure --mandir=/usr/share/man --enable-dmeventd --enable-pkgconfig --disable-selinux &&
make

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --enable-pkgconfig &&
make

Install the package

make install

N32

Compile the package:

sed -i "/usrlibdir/s:/lib:&32:" configure && 
CC="gcc ${BUILDN32}" ./configure --libdir=/lib32 \
    --enable-pkgconfig &&
make

Install the package

make install

64Bit

Compile the package:

sed -i "/usrlibdir/s:/lib:&64:" configure && 
CC="gcc ${BUILD64}" ./configure --libdir=/lib64 \
    --enable-pkgconfig &&
make

Install the package

make install