From e3c0cc9dfc1dccc83d620b75a82008ed7c918273 Mon Sep 17 00:00:00 2001 From: Laytan Laats Date: Sat, 11 Jan 2025 00:18:36 +0100 Subject: [PATCH] time: add haiku --- core/time/time_other.odin | 1 + core/time/time_unix.odin | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/core/time/time_other.odin b/core/time/time_other.odin index d89bcbd42..3f0f06e9b 100644 --- a/core/time/time_other.odin +++ b/core/time/time_other.odin @@ -9,6 +9,7 @@ #+build !wasi #+build !windows #+build !orca +#+build !haiku package time _IS_SUPPORTED :: false diff --git a/core/time/time_unix.odin b/core/time/time_unix.odin index 61c4e91d3..c384d6d07 100644 --- a/core/time/time_unix.odin +++ b/core/time/time_unix.odin @@ -1,5 +1,5 @@ #+private -#+build darwin, freebsd, openbsd, netbsd +#+build darwin, freebsd, openbsd, netbsd, haiku package time import "core:sys/posix"