freeswitch/libs/apr
Chris Rienzo 892f0a289f FS-11516 [build-system] Add --enable-pool-sanitizer configure flag. This will make it easier to find memory issues when using address sanitizer. Also added -fstack-protector-strong when using --enable-address-sanitizer. 2019-07-16 23:17:47 +04:00
..
atomic FS-6010 --resolve 2013-11-29 22:16:49 -06:00
build FS-11509: [Build-System] Fix --enable-address-sanitizer configure flag. 2019-06-06 11:02:27 -04:00
docs
dso
file_io
helpers
images
include Applied the Sangoma patch to FS version 1.2 in order to port to FS v1.6+ 2016-01-26 20:20:34 -08:00
locks
memory/unix FS-11516 [build-system] Add --enable-pool-sanitizer configure flag. This will make it easier to find memory issues when using address sanitizer. Also added -fstack-protector-strong when using --enable-address-sanitizer. 2019-07-16 23:17:47 +04:00
misc
mmap
network_io Applied the Sangoma patch to FS version 1.2 in order to port to FS v1.6+ 2016-01-26 20:20:34 -08:00
passwd
poll
random/unix Fix memset calls in APR sha2 implementation 2012-06-24 08:05:25 +00:00
shmem
strings
support/unix
tables
test
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
user
.update bump apr build from api update 2016-04-08 13:43:43 -04:00
CHANGES
CMakeLists.txt
LICENSE
Makefile.in clean up some bootstrap warnings 2014-03-07 18:36:26 -05:00
NOTICE
NWGNUmakefile
README.dev
apr-config.in
apr.dsp
apr.dsw
apr.pc.in
apr.spec
build-outputs.mk
build.conf
buildconf
config.layout
configure.ac FS-6294 FS-6308 NetBSD support should work test and report back please. 2014-03-19 14:34:07 -05:00
configure.gnu
emacs-mode
libapr.dsp
libapr.rc
libaprnw.mcp.zip
renames_pending

README.dev

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