Difference between revisions of "Talloc"

From CBLFS
Jump to navigationJump to search
(Talloc)
 
(Added Non-multilib instructions and Category)
 
Line 21: Line 21:
 
Compile the package:
 
Compile the package:
  
  Please Contribute
+
  ./configure --prefix=/usr --libdir=/usr/lib
 +
make
  
 
Install the package:
 
Install the package:
  
  Please Contribute
+
  make install
  
 
== Multilib ==
 
== Multilib ==
Line 92: Line 93:
 
|}
 
|}
  
[[Category:<PUT APPROPRIATE CATEGORY HERE>]] '''<font style="color: green">See http://cblfs.cross-lfs.org/index.php/Special:Categories for a list of categories.  Likely your package will fit in one of the existing categories.  If not, and think long and hard about it, create a new category.'''
+
[[Category:Programming]]

Latest revision as of 23:43, 5 November 2012

Download Source: http://www.samba.org/ftp/talloc/talloc-2.0.5.tar.gz

Introduction to Talloc

A hierarchical pool based memory allocator with destructors. It is the core memory allocator used in Samba, and has made a huge difference in many aspects of Samba4 development.

Project Homepage: ftp://pserver.samba.org/pub/unpacked/talloc/web/index.html


Dependencies

Required

Non-Multilib

Compile the package:

./configure --prefix=/usr --libdir=/usr/lib 
make

Install the package:

make install

Multilib

32Bit

Compile the package:

PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
    CC="gcc ${BUILD32}" CXX="g++ ${BUILD32}" \
    ./configure --prefix=/usr --libdir=/usr/lib && \
make

Install the package:

make install

Move the 32-bit library to appropriate location:

mv -v /usr/lib64/python2.6/site-packages/talloc.so \
    /usr/lib/python2.6/site-packages

N32

Compile the package:

Please Contribute

Install the package:

Please Contribute

64Bit

Compile the package:

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

Install the package:

make install

Contents

Installed Directories: /usr/lib
Installed Libraries: libpytalloc-util.so, libtalloc.so

Short Descriptions

libpytalloc-util.so Please contribute description for this library
libtalloc.so Please contribute description for this library