From 2880a2294710c16331d1e4389423a66bb7e78619 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6nke=20Ludwig?= Date: Wed, 25 Dec 2024 16:25:33 +0100 Subject: [PATCH] Use configurations to compile without TLS support. See also #2809 - although this change is not required to fix the issue. --- examples/unix_socket/dub.sdl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/examples/unix_socket/dub.sdl b/examples/unix_socket/dub.sdl index 79c293729..ec4d950e9 100644 --- a/examples/unix_socket/dub.sdl +++ b/examples/unix_socket/dub.sdl @@ -1,4 +1,5 @@ name "unit-socket-example" description "Example for sending http requests to unix sockets" dependency "vibe-d:web" path="../../" -versions "VibeNoSSL" +dependency "vibe-stream:tls" version="~>1.0" +subConfiguration "vibe-stream:tls" "notls"