mirror of
https://github.com/zigzap/zap.git
synced 2025-10-20 23:24:09 +00:00
updated relevant comment
This commit is contained in:
parent
235e9045fc
commit
887cdd8b0e
1 changed files with 1 additions and 1 deletions
|
@ -7,8 +7,8 @@ pub fn build(b: *std.build.Builder) !void {
|
||||||
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
|
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall.
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
const optimize = b.standardOptimizeOption(.{});
|
||||||
|
|
||||||
// Use an os env var to determine whether to build openssl support
|
|
||||||
const use_openssl = b.option(bool, "openssl", "Use system-installed openssl for TLS support in zap") orelse blk: {
|
const use_openssl = b.option(bool, "openssl", "Use system-installed openssl for TLS support in zap") orelse blk: {
|
||||||
|
// Alternatively, use an os env var to determine whether to build openssl support
|
||||||
if (std.os.getenv("ZAP_USE_OPENSSL")) |val| {
|
if (std.os.getenv("ZAP_USE_OPENSSL")) |val| {
|
||||||
if (std.mem.eql(u8, val, "true")) break :blk true;
|
if (std.mem.eql(u8, val, "true")) break :blk true;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue