From cdbb56150ceb85a97353e5e54600cf8d2d9b0eb3 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 27 Jun 2021 14:33:55 +0100 Subject: [PATCH] Enable video streaming for Haiku (#1825) --- Source/storm/storm_file_wrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/storm/storm_file_wrapper.h b/Source/storm/storm_file_wrapper.h index 909241ddf..3e204cbb3 100644 --- a/Source/storm/storm_file_wrapper.h +++ b/Source/storm/storm_file_wrapper.h @@ -1,6 +1,6 @@ /** A pointer to a Storm file as a `FILE *`. Only available on some platforms. */ #pragma once -#if (defined(__linux__) && !defined(__ANDROID__)) || defined(__FreeBSD__) || defined(__DragonFly__) +#if (defined(__linux__) && !defined(__ANDROID__)) || defined(__FreeBSD__) || defined(__DragonFly__) || defined(__HAIKU__) #include #include "miniwin/miniwin.h"