Libdaemon: Difference between revisions

From CBLFS
Jump to navigationJump to search
Kalessin (talk | contribs)
I filled in the package description and the "Contents" section.
No edit summary
Line 7: Line 7:
----
----


== Introduction to Libdaemon ==
{{Package-Introduction|Libdaemon is a lightweight C library that eases the writing of UNIX daemons.}}
 
Libdaemon is a lightweight C library that eases the writing of UNIX daemons.


== Dependencies ==
== Dependencies ==

Revision as of 11:50, 16 April 2007

Download Source: http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz

Introduction to Libdaemon

Libdaemon is a lightweight C library that eases the writing of UNIX daemons.

Project Homepage: Unknown

Dependencies

Optional

Non-Multilib

Compile the package:

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

Install the package

make install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr --disable-lynx &&
make

Install the package

make install

N32

Compile the package:

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

Install the package

make install

64Bit

Compile the package:

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

Install the package

make install

Contents

Installed Programs: None
Installed Libraries: libdaemon.{a,la,so}
Installed Directories: /usr/include/libdaemon

Short Descriptions

libdaemon.{a,la,so} is a lightweight C library that eases the writing of UNIX daemons.