blob: 09d6efafbf3a1b7cec260bbc39b589b280807690 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- utils/audiotool.cpp.orig 2015-11-03 08:30:29 UTC
+++ utils/audiotool.cpp
@@ -20,7 +20,10 @@
#include <ccaudio2.h>
#include <ccaudio2-config.h>
#ifdef HAVE_ENDIAN_H
-#include <endian.h>
+#include <sys/endian.h>
+#define __LITTLE_ENDIAN (_BYTE_ORDER == _LITTLE_ENDIAN)
+#define __BIG_ENDIAN (_BYTE_ORDER == _BIG_ENDIAN)
+#define __BYTE_ORDER _BYTE_ORDER
#endif
#if !defined(__BIG_ENDIAN)
|