mirror of
https://github.com/postgres/postgres.git
synced 2025-05-28 05:21:27 +03:00
This reverts commit 6acb0a628eccab8764e0306582c2b7e2a1441b9b since LibreSSL didn't support ASN1_TIME_diff until OpenBSD 7.1, leaving the older OpenBSD animals in the buildfarm complaining. Per plover in the buildfarm. Discussion: https://postgr.es/m/F0DF7102-192D-4C21-96AE-9A01AE153AD1@yesql.se
24 lines
547 B
Makefile
24 lines
547 B
Makefile
# contrib/sslinfo/Makefile
|
|
|
|
MODULE_big = sslinfo
|
|
OBJS = \
|
|
$(WIN32RES) \
|
|
sslinfo.o
|
|
|
|
EXTENSION = sslinfo
|
|
DATA = sslinfo--1.2.sql sslinfo--1.1--1.2.sql sslinfo--1.0--1.1.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))
|