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.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
下载地址(HTTP):https://archive.apache.org/dist/apr/apr-1.7.6.tar.bz2
MD5 校验和:2ebb58910e426e5a83af97bc94cae66d
大小:879 KB
预计所需磁盘空间:11 MB (additional 4 MB for the tests)
预计构建时间:0.2 SBU (add 1.7 SBU for tests)
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
switch prevents installation of static versions of the libraries.