The Ptlib (Portable Tools Library) package contains a class library that has its genesis many years ago as PWLib (portable Windows Library), a method to produce applications to run on various platforms.
This package is known to build and work properly using an LFS-9.1 platform.
Download (HTTP): http://ftp.gnome.org/pub/gnome/sources/ptlib/2.10/ptlib-2.10.11.tar.xz
Download (FTP): ftp://ftp.gnome.org/pub/gnome/sources/ptlib/2.10/ptlib-2.10.11.tar.xz
Download MD5 sum: 3ffdf89170dbfa6d29a015ef8741a4e4
Download size: 2.4 MB
Estimated disk space required: 81 MB
Estimated build time: 0.9 SBU
Cyrus SASL-2.1.27, Lua-5.3.5, OpenLDAP-2.4.49, PulseAudio-13.0, SDL-1.2.15, unixODBC-2.3.7 (currently broken, see Command Explanations below), v4l-utils-1.18.0, libdc1394, and libraw1394,
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/ptlib
Fix a build issue with gcc-7.1.0 and later:
sed -i "s/sbin\.Right(1) == '\\\\0')/strlen(sbin\.Right(1)) == 0)/" \ src/ptclib/podbc.cxx && sed -i '/\/ioctl.h/a#include <sys/uio.h>' src/ptlib/unix/channel.cxx
Fix an issue with make-4.3 and later (breaks the build with previous versions of make):
sed 's/\\#/#/' -i make/common.mak
Install Ptlib by running the following commands:
patch -Np1 -i ../ptlib-2.10.11-openssl-1.1.0-1.patch && patch -Np1 -i ../ptlib-2.10.11-bison_fixes-2.patch && ./configure --prefix=/usr \ --disable-odbc && make
This package does not come with a test suite.
Now, as the root
user:
make install && chmod -v 755 /usr/lib/libpt.so.2.10.11
--disable-odbc
: This
parameter prevents the use of unixODBC-2.3.7, whose libraries conflict
with ptlib. It is not needed if
unixODBC-2.3.7 is not installed.
Last updated on 2020-02-16 18:46:23 -0800