1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
-*- outline -*-
The purpose of libfixposix is to offer replacements for parts of POSIX
whose behaviour is inconsistent across *NIX flavours.
* Compilation
If you've downloaded this library through git, you'll first need to
generate the ./configure script; in order to do that you need to have
at least autoconf-2.67, automake-1.10 and libtool-2.2.6b and run
this inside the top directory:
> autoreconf -i
For best results use a dedicated build directory instead of running
the configure script directly in the source tree:
> mkdir build ; cd build
> ../libfixposix/configure
> make
> make install
On Linux, you might need to run «ldconfig» as superuser after
installing, otherwise the *nix linker won't be able to find the library
|