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

net: use non versioned paths for openssl on mac arm64

This commit is contained in:
Joe Conigliaro 2020-12-28 10:32:35 +11:00
parent 1d339cff16
commit dbad60acbf
No known key found for this signature in database
GPG Key ID: C12F7136C08206F1

View File

@ -15,8 +15,8 @@ module openssl
#flag darwin -I/usr/local/opt/openssl/include
#flag darwin -L/usr/local/opt/openssl/lib
// Brew arm64
#flag -I /opt/homebrew/Cellar/openssl@1.1/1.1.1h/include
#flag -L /opt/homebrew/Cellar/openssl@1.1/1.1.1h/lib
#flag darwin -I /opt/homebrew/opt/openssl/include
#flag darwin -L /opt/homebrew/opt/openssl/lib
//
#include <openssl/rand.h> # Please install OpenSSL development headers
#include <openssl/ssl.h>