mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-01-12 18:34:36 +08:00
49124613f1
This new function provides information about SSL extensions present in the X509 certificate used for the current connection. Extension version updated to version 1.1. Author: Дмитрий Воронин (Dmitry Voronin) Reviewed by: Michael Paquier, Heikki Linnakangas, Álvaro Herrera
23 lines
551 B
Makefile
23 lines
551 B
Makefile
# contrib/sslinfo/Makefile
|
|
|
|
MODULE_big = sslinfo
|
|
OBJS = sslinfo.o $(WIN32RES)
|
|
|
|
EXTENSION = sslinfo
|
|
DATA = sslinfo--1.0--1.1.sql sslinfo--1.1.sql \
|
|
sslinfo--unpackaged--1.0.sql
|
|
PGFILEDESC = "sslinfo - information about client SSL certificate"
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/sslinfo
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS))
|