mirror of
https://github.com/bytedance/g3.git
synced 2026-05-19 07:54:33 +00:00
11 lines
123 B
Bash
Executable file
11 lines
123 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
if $(pkg-config --atleast-version 1.12.0 libcares)
|
|
then
|
|
echo "c-ares"
|
|
else
|
|
echo "vendored-c-ares"
|
|
fi
|
|
|