g3/scripts/package/detect_openssl_feature.sh
Zhang Jingqiang 8675faf276
restore support of openssl 1.1 (#137)
* Revert "require openssl version 3.0"

This reverts commit cca9041354.

* send ca list only if ca cert is set explicitly

* update doc

* fix compilation
2023-12-18 19:27:27 +08:00

11 lines
109 B
Bash
Executable file

#!/bin/sh
set -e
if $(pkg-config --atleast-version 1.1.1 libssl)
then
:
else
echo "vendored-openssl"
fi