From 19703a5db9ccf8ef2753fcc36e00d879c55e000f 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