~ubuntu-branches/ubuntu/feisty/apache2/feisty

« back to all changes in this revision

Viewing changes to srclib/apr/README.dev

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Barth
  • Date: 2006-12-09 21:05:45 UTC
  • mfrom: (0.6.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061209210545-h70s0xaqc2v8vqr2
Tags: 2.2.3-3.2
* Non-maintainer upload.
* 043_ajp_connection_reuse: Patch from upstream Bugzilla, fixing a critical
  issue with regard to connection reuse in mod_proxy_ajp.
  Closes: #396265

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Apache Portable Runtime
 
2
=======================
 
3
 
 
4
If you are building APR from SVN, you need to use a slightly non-standard
 
5
build process.  You must have autoconf and libtool installed for this to
 
6
work.  There are three steps:
 
7
 
 
8
1) ./buildconf
 
9
2) ./configure
 
10
3) make
 
11
 
 
12
If you are building APR from a distribution tarball, buildconf will have
 
13
already been run for you, and you therefore do not need to have either
 
14
autoconf or libtool installed, and you do not need to run buildconf.  Skip
 
15
step one above and just run configure then make.
 
16
 
 
17
Generating Test Coverage information
 
18
====================================
 
19
 
 
20
If you want to generate test coverage data, use the following steps:
 
21
 
 
22
1) ./buildconf
 
23
2) CFLAGS="-fprofile-arcs -ftest-coverage" ./configure
 
24
3) make
 
25
4) cd test
 
26
5) make
 
27
6) ./testall
 
28
7) cd ..
 
29
8) make gcov
 
30