1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Remove configure check for OpenSSL's SSL_get_current_compression()

This function has been added in OpenSSL 0.9.8, which is the oldest
version supported on HEAD, so checking for it at configure time is
useless.  Both the frontend and backend code did not even bother to use
it.

Reported-by: Daniel Gustafsson
Author: Michael Paquier
Reviewed-by: Daniel Gustafsson, Tom Lane
Discussion: https://postgr.es/m/20191205083252.GE5064@paquier.xyz
Discussion: https://postgr.es/m/98F7F99E-1129-41D8-B86B-FE3B1E286881@yesql.se
This commit is contained in:
Michael Paquier
2019-12-06 09:41:32 +09:00
parent 431ba7bebf
commit 28f4bba66b
5 changed files with 2 additions and 12 deletions

2
configure vendored
View File

@ -12094,7 +12094,7 @@ else
fi
fi
for ac_func in SSL_clear_options SSL_get_current_compression X509_get_signature_nid
for ac_func in SSL_clear_options X509_get_signature_nid
do :
as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh`
ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var"