From 65af34b1bf43c6354618dd95d16297f2be8f4a1b Mon Sep 17 00:00:00 2001 From: Michael Neumann Date: Sat, 27 Sep 2025 09:51:53 +0200 Subject: [PATCH] bootstrap: Add support for DragonFly --- bootstrap.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bootstrap.c b/bootstrap.c index b6345987a9..1f17fc8455 100644 --- a/bootstrap.c +++ b/bootstrap.c @@ -64,6 +64,8 @@ static const char *get_host_os(void) { return "linux"; #elif defined(__FreeBSD__) return "freebsd"; +#elif defined(__DragonFly__) + return "dragonfly"; #elif defined(__HAIKU__) return "haiku"; #else