From 24f23c5cdbe2bbc01d21bf3cd451ef539b9cb088 Mon Sep 17 00:00:00 2001 From: superherointj <5861043+superherointj@users.noreply.github.com> Date: Fri, 3 Oct 2025 10:34:11 -0300 Subject: [PATCH] System-provided ENet warning Warning from documentation: https://github.com/godotengine/godot/tree/master/thirdparty#enet --- platform/linuxbsd/detect.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/linuxbsd/detect.py b/platform/linuxbsd/detect.py index 156d7aa1bf1..2932d56a41d 100644 --- a/platform/linuxbsd/detect.py +++ b/platform/linuxbsd/detect.py @@ -244,6 +244,9 @@ def configure(env: "SConsEnvironment"): if not env["builtin_enet"]: env.ParseConfig("pkg-config libenet --cflags --libs") + print_warning( + "System-provided ENet has its functionality limited to IPv4 only and no DTLS support, unless patched for Godot." + ) if not env["builtin_zstd"]: env.ParseConfig("pkg-config libzstd --cflags --libs")