mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-16 08:40:06 +02:00
37 lines
1.3 KiB
Plaintext
37 lines
1.3 KiB
Plaintext
From 3e731d32a286903a4b75d445ec6fdf0b8359b5d9 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Adri=C3=A1n=20Arroyo=20Calle?=
|
|
<adrian.arroyocalle@gmail.com>
|
|
Date: Wed, 24 Dec 2014 14:55:21 +0000
|
|
Subject: Add __HAIKU__ when needed
|
|
|
|
|
|
diff --git a/src/osgDB/FileUtils.cpp b/src/osgDB/FileUtils.cpp
|
|
index affd682..dcbb532 100644
|
|
--- a/src/osgDB/FileUtils.cpp
|
|
+++ b/src/osgDB/FileUtils.cpp
|
|
@@ -76,7 +76,7 @@ typedef char TCHAR;
|
|
#if (MAC_OS_X_VERSION_MAX_ALLOWED <= 1040)
|
|
#define stat64 stat
|
|
#endif
|
|
-#elif defined(__CYGWIN__) || defined(__FreeBSD__) || defined(__DragonFly__) || \
|
|
+#elif defined(__CYGWIN__) || defined(__HAIKU__) || defined(__FreeBSD__) || defined(__DragonFly__) || \
|
|
(defined(__hpux) && !defined(_LARGEFILE64_SOURCE))
|
|
#define stat64 stat
|
|
#endif
|
|
diff --git a/src/osgPlugins/osc/osc/OscHostEndianness.h b/src/osgPlugins/osc/osc/OscHostEndianness.h
|
|
index 3720ea6..6f4c6bc 100644
|
|
--- a/src/osgPlugins/osc/osc/OscHostEndianness.h
|
|
+++ b/src/osgPlugins/osc/osc/OscHostEndianness.h
|
|
@@ -51,7 +51,7 @@
|
|
|
|
#else
|
|
|
|
- #if defined(__GLIBC__) || defined(__ANDROID__) || defined(__CYGWIN__)
|
|
+ #if defined(__GLIBC__) || defined(__ANDROID__) || defined(__CYGWIN__) || defined(__HAIKU__)
|
|
#include <endian.h>
|
|
#if (__BYTE_ORDER == __LITTLE_ENDIAN)
|
|
#define __LITTLE_ENDIAN__
|
|
--
|
|
1.8.3.4
|
|
|