freeswitch/libs/apr
2021-10-19 20:10:35 +03:00
..
atomic FS-6010 --resolve 2013-11-29 22:16:49 -06:00
build [build] fix configure checks for ipv6 on latest osx 2021-03-03 10:02:29 -07:00
docs add apr to in tree libs 2006-12-19 19:58:23 +00:00
dso hack for now until we ditch apr dso code completely 2008-09-20 00:05:00 +00:00
file_io [apr] scan-build: Fix "Argument with 'nonnull' attribute passed null" in file_io/unix/filepath.c 2020-02-20 00:16:37 +04:00
helpers add apr to in tree libs 2006-12-19 19:58:23 +00:00
images add apr to in tree libs 2006-12-19 19:58:23 +00:00
include [apr] error: use of undeclared identifier 'NSIG' 2021-06-03 01:19:39 +03:00
locks FSCORE-606 (Win) bridge fails because session read lock failure 2010-05-20 08:05:28 -05:00
memory/unix [apr] Fix potential dereference of a null pointer when apr_pool_create_ex() is called without both an allocator and a parent while global_pool is uninitialized. 2020-02-19 14:38:56 +04:00
misc [apr] scan-build: fix dereference of null pointer in apr_hash_merge() and apr_proc_other_child_unregister() 2020-02-20 23:20:53 +04:00
mmap add apr to in tree libs 2006-12-19 19:58:23 +00:00
network_io [apr] fix find_if_index for BSDs/mac 2020-09-21 11:50:09 -04:00
passwd add apr to in tree libs 2006-12-19 19:58:23 +00:00
poll add apr to in tree libs 2006-12-19 19:58:23 +00:00
random/unix [apr] Scan-build: Fix multiple dead assignments in sha2.c 2020-02-14 02:51:32 +04:00
shmem add apr to in tree libs 2006-12-19 19:58:23 +00:00
strings [apr] Fix dead assignment and use of uninitialized variable in strings. 2020-02-15 02:22:36 +04:00
support/unix add apr to in tree libs 2006-12-19 19:58:23 +00:00
tables [apr] scan-build: Dereference of null pointer in apr_hash_merge() 2021-10-19 20:10:35 +03:00
test add apr to in tree libs 2006-12-19 19:58:23 +00:00
threadproc FS-7969 #resolve [Freeswitch segfaults due to pthread_setschedparam() on a thread that has exited] #comment please test this fix which was verified working 2015-08-19 11:42:11 -05:00
time add apr to in tree libs 2006-12-19 19:58:23 +00:00
user add apr to in tree libs 2006-12-19 19:58:23 +00:00
.update [Core, mod_commands] Add switch_core_pool_stats API and pool_stats command with corresponding --enable-pool-debug configure flag. 2019-12-31 02:07:22 +04:00
apr-config.in add apr to in tree libs 2006-12-19 19:58:23 +00:00
apr.dsp add apr to in tree libs 2006-12-19 19:58:23 +00:00
apr.dsw add apr to in tree libs 2006-12-19 19:58:23 +00:00
apr.pc.in add apr to in tree libs 2006-12-19 19:58:23 +00:00
apr.spec add apr to in tree libs 2006-12-19 19:58:23 +00:00
build-outputs.mk add apr to in tree libs 2006-12-19 19:58:23 +00:00
build.conf add apr to in tree libs 2006-12-19 19:58:23 +00:00
buildconf add apr to in tree libs 2006-12-19 19:58:23 +00:00
CHANGES add apr to in tree libs 2006-12-19 19:58:23 +00:00
CMakeLists.txt apr cmake files 2009-02-16 07:11:19 +00:00
config.layout add apr to in tree libs 2006-12-19 19:58:23 +00:00
configure.ac [build] fix configure checks for ipv6 on latest osx 2021-03-03 10:02:29 -07:00
configure.gnu fix srcdir for libs/apr/configure.gnu (FSBUILD-211) 2009-11-24 00:17:18 +00:00
emacs-mode add apr to in tree libs 2006-12-19 19:58:23 +00:00
libapr.dsp add apr to in tree libs 2006-12-19 19:58:23 +00:00
libapr.rc add apr to in tree libs 2006-12-19 19:58:23 +00:00
libaprnw.mcp.zip add apr to in tree libs 2006-12-19 19:58:23 +00:00
LICENSE add apr to in tree libs 2006-12-19 19:58:23 +00:00
Makefile.in clean up some bootstrap warnings 2014-03-07 18:36:26 -05:00
NOTICE add apr to in tree libs 2006-12-19 19:58:23 +00:00
NWGNUmakefile add apr to in tree libs 2006-12-19 19:58:23 +00:00
README.dev add apr to in tree libs 2006-12-19 19:58:23 +00:00
renames_pending add apr to in tree libs 2006-12-19 19:58:23 +00:00

Apache Portable Runtime
=======================

If you are building APR from SVN, you need to use a slightly non-standard
build process.  You must have autoconf and libtool installed for this to
work.  There are three steps:

1) ./buildconf
2) ./configure
3) make

If you are building APR from a distribution tarball, buildconf will have
already been run for you, and you therefore do not need to have either
autoconf or libtool installed, and you do not need to run buildconf.  Skip
step one above and just run configure then make.

Generating Test Coverage information
====================================

If you want to generate test coverage data, use the following steps:

1) ./buildconf
2) CFLAGS="-fprofile-arcs -ftest-coverage" ./configure
3) make
4) cd test
5) make
6) ./testall
7) cd ..
8) make gcov