bootstrap: Add support for DragonFly

This commit is contained in:
Michael Neumann 2025-09-27 09:51:53 +02:00 committed by Alex Rønne Petersen
parent 8b5e4e032b
commit 65af34b1bf
No known key found for this signature in database

View File

@ -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