Add Haiku detection to version alist
List was incomplete Haiku OS was missing Let the full list bloom
This commit is contained in:
parent
c33ba84796
commit
7efc38b4f7
4
c/main.c
4
c/main.c
|
@ -89,6 +89,10 @@ static value_t get_platform(void)
|
||||||
#ifdef __minix
|
#ifdef __minix
|
||||||
userland = kernel = "minix";
|
userland = kernel = "minix";
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef __HAIKU__
|
||||||
|
userland = "beos";
|
||||||
|
kernel = "haiku";
|
||||||
|
#endif
|
||||||
#ifdef __APPLE__
|
#ifdef __APPLE__
|
||||||
userland = kernel = "darwin";
|
userland = kernel = "darwin";
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue