mirror of
https://github.com/yann64/haikuports.git
synced 2026-04-10 05:40:07 +02:00
26 lines
742 B
Plaintext
26 lines
742 B
Plaintext
From 0728ed422e3ab37df5dd1b3dcd5e712c7fc18444 Mon Sep 17 00:00:00 2001
|
|
From: Calvin Hill <calvin@hakobaito.co.uk>
|
|
Date: Sat, 28 Jan 2017 19:20:34 +0000
|
|
Subject: [PATCH] haiku: patch Host.h for endian.h
|
|
|
|
---
|
|
llvm/include/llvm/Support/Host.h | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/llvm/include/llvm/Support/Host.h b/llvm/include/llvm/Support/Host.h
|
|
index 8f4bf3c..8114f9b 100644
|
|
--- a/llvm/include/llvm/Support/Host.h
|
|
+++ b/llvm/include/llvm/Support/Host.h
|
|
@@ -16,7 +16,7 @@
|
|
|
|
#include "llvm/ADT/StringMap.h"
|
|
|
|
-#if defined(__linux__) || defined(__GNU__)
|
|
+#if defined(__linux__) || defined(__GNU__) || defined(__HAIKU__)
|
|
#include <endian.h>
|
|
#else
|
|
#if !defined(BYTE_ORDER) && !defined(LLVM_ON_WIN32)
|
|
--
|
|
2.7.4
|
|
|