1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

net.openssl: add -ldl -lpthread for linux

This commit is contained in:
Delyan Angelov 2021-05-16 08:28:36 +00:00
parent 0d44c8857e
commit 9d8489b025

View File

@ -7,7 +7,8 @@ module openssl
// (older) system openssl. // (older) system openssl.
#flag linux -I/usr/local/include/openssl -L/usr/local/lib #flag linux -I/usr/local/include/openssl -L/usr/local/lib
#flag windows -l libssl -l libcrypto #flag windows -l libssl -l libcrypto
#flag -l ssl -l crypto #flag -lssl -lcrypto
#flag linux -ldl -lpthread
// MacPorts // MacPorts
#flag darwin -I/opt/local/include #flag darwin -I/opt/local/include
#flag darwin -L/opt/local/lib #flag darwin -L/opt/local/lib