The Apache Portable Runtime (APR) is a supporting library for the Apache web server. It provides a set of application programming interfaces (APIs) that map to the underlying Operating System (OS). Where the OS doesn't support a particular function, APR will provide an emulation. Thus programmers can use the APR to make a program portable across different platforms.
This package is known to build and work properly using an LFS-7.4 platform.
Download (HTTP): http://archive.apache.org/dist/apr/apr-1.4.8.tar.bz2
Download (FTP): ftp://ftp.mirrorservice.org/sites/ftp.apache.org/apr/apr-1.4.8.tar.bz2
Download MD5 sum: ce2ab01a0c3cdb71cf0a6326b8654f41
Download size: 760 KB
Estimated disk space required: 14 MB
Estimated build time: 0.2 SBU (1.4 with tests)
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/apr
Install Apr by running the following commands:
./configure --prefix=/usr --disable-static \ --with-installbuilddir=/usr/share/apr-1/build && make
To test the results, issue: make test.
Now, as the root
user:
make install
--disable-static
: This stops it from
compiling a static version of libapr-1
.
Last updated on 2013-08-17 21:37:04 -0700