1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

Find libopenssl instead of libssl

This commit is contained in:
Joe Liotta 2024-04-12 13:10:00 -04:00
parent 518199fca5
commit 06641b1d20
No known key found for this signature in database
GPG key ID: B9CF6E19280E8838

View file

@ -73,7 +73,7 @@ pub fn build_facilio(
// link in libopenssl and libcrypto on demand
if (use_openssl) {
lib.linkSystemLibrary("ssl");
lib.linkSystemLibrary("openssl");
lib.linkSystemLibrary("crypto");
}