Michael Jerris c99b8fb34f pull back change from apr 1.3.0
" *) Rework the WIN32 CV code to signal the condition only if one or
     more threads are blocked on the condition variable. If no threads
     are waiting on the condition variable, nothing happens. The change
     also eliminates the thundering-herd problem of the manual-reset
     event, which (theoretically) wakes up all threads waiting on. Now
     the behavior of the CV's should be the same on Unix and win32
     platforms. PR 42305.  [Davi Arnaut]
"

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@10334 d0543943-73ff-0310-b7d9-9358b9ac24b2
2008-11-11 18:35:48 +00:00
..
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2008-11-11 18:35:48 +00:00
2008-11-11 18:35:48 +00:00
2008-06-04 17:53:33 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2007-11-08 13:45:57 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
2006-12-19 19:58:23 +00:00
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