mirror of
https://github.com/bytedance/g3.git
synced 2026-05-17 03:57:11 +00:00
11 lines
109 B
Bash
Executable file
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
|
|
|