From b94728756c4466eeb500409668de49743bdd89f8 Mon Sep 17 00:00:00 2001 From: Jorge Acereda Date: Sun, 25 Feb 2024 12:42:19 +0100 Subject: [PATCH] Haiku OS info --- profiler/src/HttpRequest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/profiler/src/HttpRequest.cpp b/profiler/src/HttpRequest.cpp index 62181b44..e3b81d83 100644 --- a/profiler/src/HttpRequest.cpp +++ b/profiler/src/HttpRequest.cpp @@ -68,6 +68,8 @@ static const char* GetOsInfo() sprintf( buf, "BSD (OpenBSD)" ); #elif defined __QNX__ sprintf( buf, "QNX" ); +#elif defined __HAIKU__ + sprintf( buf, "Haiku" ); #else sprintf( buf, "unknown" ); #endif