]> granicus.if.org Git - pgbouncer/blob - README
v1.2.3
[pgbouncer] / README
1
2 PgBouncer
3 =========
4
5 Lightweight connection pooler for PostgreSQL.
6
7 Docs:   http://developer.skype.com/SkypeGarage/DbProjects/PgBouncer
8 Source: http://pgfoundry.org/projects/pgbouncer
9
10 Building
11 ---------
12
13 PgBouncer uses libevent for low-level socket handling.
14 Libevent needs to be at least version 1.3b.
15
16 When this is installed just run:
17
18         $ ./configure --prefix=/usr/local --with-libevent=/prefix
19         $ make
20         $ make install
21
22 If the OS does not have libevent available as package, it can be
23 downloaded from http://monkey.org/~provos/libevent/
24
25 Building from CVS
26 -----------------
27
28 Building PgBouncer from CVS requires that you generate the header
29 and config files before you can run configure:
30
31         $ make boot
32         $ ./configure ...
33         $ make
34
35 To have manpages, asciidoc 8.x and xmlto need to be installed,
36 as CVS does not contain generated pages.  Without those,
37 manpages are skipped when building/installing.
38