2010-09-21 00:08:53 +04:00
|
|
|
# contrib/Makefile
|
2000-06-15 22:55:34 +04:00
|
|
|
|
2000-07-09 17:14:19 +04:00
|
|
|
subdir = contrib
|
|
|
|
top_builddir = ..
|
2000-09-19 00:11:37 +04:00
|
|
|
include $(top_builddir)/src/Makefile.global
|
2000-06-15 22:55:34 +04:00
|
|
|
|
2009-08-08 00:50:22 +04:00
|
|
|
SUBDIRS = \
|
2006-05-30 17:25:57 +04:00
|
|
|
adminpack \
|
2010-11-27 15:22:25 +03:00
|
|
|
auth_delay \
|
2008-11-19 05:59:28 +03:00
|
|
|
auto_explain \
|
2009-03-26 02:20:01 +03:00
|
|
|
btree_gin \
|
2001-08-22 22:27:54 +04:00
|
|
|
btree_gist \
|
2001-08-23 20:54:25 +04:00
|
|
|
chkpass \
|
2008-07-29 22:31:20 +04:00
|
|
|
citext \
|
2000-12-11 23:40:59 +03:00
|
|
|
cube \
|
2001-06-18 21:20:56 +04:00
|
|
|
dblink \
|
2007-10-16 01:36:50 +04:00
|
|
|
dict_int \
|
|
|
|
dict_xsyn \
|
2003-06-30 23:58:57 +04:00
|
|
|
earthdistance \
|
2011-02-20 22:06:59 +03:00
|
|
|
file_fdw \
|
2001-08-22 22:27:54 +04:00
|
|
|
fuzzystrmatch \
|
2006-09-09 08:07:52 +04:00
|
|
|
hstore \
|
2002-08-30 05:44:00 +04:00
|
|
|
intagg \
|
2001-01-16 01:20:00 +03:00
|
|
|
intarray \
|
2006-09-09 08:07:52 +04:00
|
|
|
isn \
|
2001-02-10 15:07:12 +03:00
|
|
|
lo \
|
2002-07-30 20:40:34 +04:00
|
|
|
ltree \
|
2001-02-10 06:44:06 +03:00
|
|
|
oid2name \
|
2007-05-17 23:11:25 +04:00
|
|
|
pageinspect \
|
2009-11-19 00:57:56 +03:00
|
|
|
passwordcheck \
|
Add pg_audit, an auditing extension
This extension provides detailed logging classes, ability to control
logging at a per-object level, and includes fully-qualified object
names for logged statements (DML and DDL) in independent fields of the
log output.
Authors: Ian Barwick, Abhijit Menon-Sen, David Steele
Reviews by: Robert Haas, Tatsuo Ishii, Sawada Masahiko, Fujii Masao,
Simon Riggs
Discussion with: Josh Berkus, Jaime Casanova, Peter Eisentraut,
David Fetter, Yeb Havinga, Alvaro Herrera, Petr Jelinek, Tom Lane,
MauMau, Bruce Momjian, Jim Nasby, Michael Paquier,
Fabrízio de Royes Mello, Neil Tiffin
2015-05-14 17:36:16 +03:00
|
|
|
pg_audit \
|
2005-03-12 18:36:24 +03:00
|
|
|
pg_buffercache \
|
2006-02-12 06:55:53 +03:00
|
|
|
pg_freespacemap \
|
2013-12-20 17:08:01 +04:00
|
|
|
pg_prewarm \
|
2007-02-08 18:09:47 +03:00
|
|
|
pg_standby \
|
2009-01-05 01:19:59 +03:00
|
|
|
pg_stat_statements \
|
2004-06-01 09:15:47 +04:00
|
|
|
pg_trgm \
|
2001-09-29 07:11:58 +04:00
|
|
|
pgcrypto \
|
2006-04-23 06:17:59 +04:00
|
|
|
pgrowlocks \
|
2001-10-01 05:52:38 +04:00
|
|
|
pgstattuple \
|
2013-02-21 14:26:23 +04:00
|
|
|
postgres_fdw \
|
2001-02-10 15:07:12 +03:00
|
|
|
seg \
|
|
|
|
spi \
|
2002-07-30 20:32:20 +04:00
|
|
|
tablefunc \
|
2012-01-20 08:15:15 +04:00
|
|
|
tcn \
|
Introduce logical decoding.
This feature, building on previous commits, allows the write-ahead log
stream to be decoded into a series of logical changes; that is,
inserts, updates, and deletes and the transactions which contain them.
It is capable of handling decoding even across changes to the schema
of the effected tables. The output format is controlled by a
so-called "output plugin"; an example is included. To make use of
this in a real replication system, the output plugin will need to be
modified to produce output in the format appropriate to that system,
and to perform filtering.
Currently, information can be extracted from the logical decoding
system only via SQL; future commits will add the ability to stream
changes via walsender.
Andres Freund, with review and other contributions from many other
people, including Álvaro Herrera, Abhijit Menon-Sen, Peter Gheogegan,
Kevin Grittner, Robert Haas, Heikki Linnakangas, Fujii Masao, Abhijit
Menon-Sen, Michael Paquier, Simon Riggs, Craig Ringer, and Steve
Singer.
2014-03-04 01:32:18 +04:00
|
|
|
test_decoding \
|
2007-11-14 00:04:45 +03:00
|
|
|
tsearch2 \
|
2009-08-18 14:34:39 +04:00
|
|
|
unaccent \
|
2014-11-30 05:55:00 +03:00
|
|
|
vacuumlo
|
2001-09-06 14:49:30 +04:00
|
|
|
|
2006-09-04 19:07:46 +04:00
|
|
|
ifeq ($(with_openssl),yes)
|
2009-08-08 00:50:22 +04:00
|
|
|
SUBDIRS += sslinfo
|
2011-07-03 21:55:02 +04:00
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += sslinfo
|
2006-09-04 19:07:46 +04:00
|
|
|
endif
|
|
|
|
|
2014-05-28 03:42:08 +04:00
|
|
|
ifneq ($(with_uuid),no)
|
2009-08-08 00:50:22 +04:00
|
|
|
SUBDIRS += uuid-ossp
|
2011-07-03 21:55:02 +04:00
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += uuid-ossp
|
2007-04-21 21:26:18 +04:00
|
|
|
endif
|
|
|
|
|
2007-04-15 16:48:24 +04:00
|
|
|
ifeq ($(with_libxml),yes)
|
2009-08-08 00:50:22 +04:00
|
|
|
SUBDIRS += xml2
|
2011-07-03 21:55:02 +04:00
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += xml2
|
2007-04-15 16:48:24 +04:00
|
|
|
endif
|
|
|
|
|
2011-01-24 04:44:48 +03:00
|
|
|
ifeq ($(with_selinux),yes)
|
|
|
|
SUBDIRS += sepgsql
|
2011-07-03 21:55:02 +04:00
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += sepgsql
|
2011-01-24 04:44:48 +03:00
|
|
|
endif
|
|
|
|
|
2015-04-26 17:33:14 +03:00
|
|
|
ifeq ($(with_perl),yes)
|
|
|
|
SUBDIRS += hstore_plperl
|
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += hstore_plperl
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(with_python),yes)
|
|
|
|
SUBDIRS += hstore_plpython ltree_plpython
|
|
|
|
else
|
|
|
|
ALWAYS_SUBDIRS += hstore_plpython ltree_plpython
|
|
|
|
endif
|
|
|
|
|
2001-09-06 14:49:30 +04:00
|
|
|
# Missing:
|
|
|
|
# start-scripts \ (does not have a makefile)
|
2007-04-15 16:48:24 +04:00
|
|
|
|
2001-07-07 03:07:20 +04:00
|
|
|
|
2010-11-12 23:15:16 +03:00
|
|
|
$(recurse)
|
2011-07-03 21:55:02 +04:00
|
|
|
$(recurse_always)
|