diff options
| author | Daniel Gustafsson | 2025-02-06 19:26:46 +0000 |
|---|---|---|
| committer | Daniel Gustafsson | 2025-02-06 19:26:46 +0000 |
| commit | 44ec09575145e908be8130de701e5c83995d1abe (patch) | |
| tree | a846231e9979226bcf5209862ac37867954c89f9 /contrib/sslinfo/Makefile | |
| parent | 527f8fec220b4c3b84d353543e9741b76d396a11 (diff) | |
Remove support for linking with libeay32 and ssleay32
The OpenSSL project stopped using the eay names back in 2016
on platforms other than Microsoft Windows, and version 1.1.0
removed the names from Windows as well. Since we now require
OpenSSL 1.1.1 we can remove support for using the eay names
from our tree as well.
Author: Daniel Gustafsson <daniel@yesql.se>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/3C445F8E-D43E-4970-9CD9-A54882197714@yesql.se
Discussion: https://postgr.es/m/CAHrt6656W9OnFomQTHBGYDcM5CKZ7hcgzFt8L+N0ezBZfcN3zA@mail.gmail.com
Diffstat (limited to 'contrib/sslinfo/Makefile')
| -rw-r--r-- | contrib/sslinfo/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/sslinfo/Makefile b/contrib/sslinfo/Makefile index dd1ff83b16d..14305594e2d 100644 --- a/contrib/sslinfo/Makefile +++ b/contrib/sslinfo/Makefile @@ -20,4 +20,4 @@ include $(top_builddir)/src/Makefile.global include $(top_srcdir)/contrib/contrib-global.mk endif -SHLIB_LINK += $(filter -lssl -lcrypto -lssleay32 -leay32, $(LIBS)) +SHLIB_LINK += $(filter -lssl -lcrypto, $(LIBS)) |
