mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
fe61df7f82
This is a replacement for the existing --with-openssl, extending the logic to make easier the addition of new SSL libraries. The grammar is chosen to be similar to --with-uuid, where multiple values can be chosen, with "openssl" as the only supported value for now. The original switch, --with-openssl, is kept for compatibility. Author: Daniel Gustafsson, Michael Paquier Reviewed-by: Jacob Champion Discussion: https://postgr.es/m/FAB21FC8-0F62-434F-AA78-6BD9336D630A@yesql.se
96 lines
1.4 KiB
Makefile
96 lines
1.4 KiB
Makefile
# contrib/Makefile
|
|
|
|
subdir = contrib
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
SUBDIRS = \
|
|
adminpack \
|
|
amcheck \
|
|
auth_delay \
|
|
auto_explain \
|
|
bloom \
|
|
btree_gin \
|
|
btree_gist \
|
|
citext \
|
|
cube \
|
|
dblink \
|
|
dict_int \
|
|
dict_xsyn \
|
|
earthdistance \
|
|
file_fdw \
|
|
fuzzystrmatch \
|
|
hstore \
|
|
intagg \
|
|
intarray \
|
|
isn \
|
|
lo \
|
|
ltree \
|
|
oid2name \
|
|
old_snapshot \
|
|
pageinspect \
|
|
passwordcheck \
|
|
pg_buffercache \
|
|
pg_freespacemap \
|
|
pg_prewarm \
|
|
pg_stat_statements \
|
|
pg_surgery \
|
|
pg_trgm \
|
|
pgcrypto \
|
|
pgrowlocks \
|
|
pgstattuple \
|
|
pg_visibility \
|
|
postgres_fdw \
|
|
seg \
|
|
spi \
|
|
tablefunc \
|
|
tcn \
|
|
test_decoding \
|
|
tsm_system_rows \
|
|
tsm_system_time \
|
|
unaccent \
|
|
vacuumlo
|
|
|
|
ifeq ($(with_ssl),openssl)
|
|
SUBDIRS += sslinfo
|
|
else
|
|
ALWAYS_SUBDIRS += sslinfo
|
|
endif
|
|
|
|
ifneq ($(with_uuid),no)
|
|
SUBDIRS += uuid-ossp
|
|
else
|
|
ALWAYS_SUBDIRS += uuid-ossp
|
|
endif
|
|
|
|
ifeq ($(with_libxml),yes)
|
|
SUBDIRS += xml2
|
|
else
|
|
ALWAYS_SUBDIRS += xml2
|
|
endif
|
|
|
|
ifeq ($(with_selinux),yes)
|
|
SUBDIRS += sepgsql
|
|
else
|
|
ALWAYS_SUBDIRS += sepgsql
|
|
endif
|
|
|
|
ifeq ($(with_perl),yes)
|
|
SUBDIRS += bool_plperl hstore_plperl jsonb_plperl
|
|
else
|
|
ALWAYS_SUBDIRS += bool_plperl hstore_plperl jsonb_plperl
|
|
endif
|
|
|
|
ifeq ($(with_python),yes)
|
|
SUBDIRS += hstore_plpython jsonb_plpython ltree_plpython
|
|
else
|
|
ALWAYS_SUBDIRS += hstore_plpython jsonb_plpython ltree_plpython
|
|
endif
|
|
|
|
# Missing:
|
|
# start-scripts \ (does not have a makefile)
|
|
|
|
|
|
$(recurse)
|
|
$(recurse_always)
|