From a124f5caa9b559b3a12ec84423513b83f9865c97 Mon Sep 17 00:00:00 2001 From: Halil Durak Date: Wed, 26 Nov 2025 12:26:45 +0300 Subject: [PATCH] make BoringSSL the default TLS backend --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index d50150e9..f2c32cc4 100644 --- a/build.zig +++ b/build.zig @@ -46,7 +46,7 @@ pub fn build(b: *Build) !void { b.option([]const u8, "git_commit", "Current git commit") orelse "dev", ); - const use_boringssl = b.option(bool, "use-boringssl", "Whether use BoringSSL (default:false)") orelse false; + const use_boringssl = b.option(bool, "use-boringssl", "Whether use BoringSSL (default:true)") orelse true; const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); @@ -69,7 +69,7 @@ pub fn build(b: *Build) !void { // compile and install const exe = b.addExecutable(.{ - .name = if (use_boringssl) "lightpanda-boringssl" else "lightpanda-mbedtls", + .name = "lightpanda", .use_llvm = true, .root_module = lightpanda_module, });