freeswitch/libs/apr
Jeff Lenk bb53175526 FS-6010 --resolve 2013-11-29 22:16:49 -06:00
..
atomic FS-6010 --resolve 2013-11-29 22:16:49 -06:00
build build: fix automake warnings about underquoted definitions in apr macros (FSBUILD-175) 2009-06-20 03:53:06 +00:00
docs
dso hack for now until we ditch apr dso code completely 2008-09-20 00:05:00 +00:00
file_io
helpers
images
include fix thread priority code, this has never worked until today 2012-09-27 13:38:02 -05:00
locks FSCORE-606 (Win) bridge fails because session read lock failure 2010-05-20 08:05:28 -05:00
memory/unix Return const char* from apr_pool_tag 2012-06-24 08:15:16 +00:00
misc
mmap
network_io fix some close on -1 issues 2013-08-27 13:59:30 -04:00
passwd
poll
random/unix Fix memset calls in APR sha2 implementation 2012-06-24 08:05:25 +00:00
shmem
strings FS-2738 2010-09-27 13:26:09 -05:00
support/unix
tables add new apr functions/macros needed by unimrcp update 2009-11-19 14:24:59 +00:00
test
threadproc fix some contention issues under really high load...That doesn't mean you need to push it this hard and bug me about it =p 2012-11-07 14:53:16 -06:00
time
user
.update fix some close on -1 issues 2013-08-27 13:59:30 -04:00
CHANGES
CMakeLists.txt apr cmake files 2009-02-16 07:11:19 +00:00
LICENSE
Makefile.in FS-4753 --resolve this should properly detect it everywhere 2012-10-23 13:14:51 -04: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.gnu fix srcdir for libs/apr/configure.gnu (FSBUILD-211) 2009-11-24 00:17:18 +00:00
configure.in fix some contention issues under really high load...That doesn't mean you need to push it this hard and bug me about it =p 2012-11-07 14:53:16 -06:00
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