diff -urN /develop/projects/matroska/install/libebml-1.0.0/ebml/c/libebml_t.h /develop/projects/matroska/libebml-1.0.0/ebml/c/libebml_t.h
|
old
|
new
|
|
| 72 | 72 | typedef uint16_t uint16; |
| 73 | 73 | typedef uint8_t uint8; |
| 74 | 74 | # endif // __GNUC__ |
| 75 | | #elif defined(__BEOS__) |
| | 75 | #elif defined(__BEOS__) || defined(__HAIKU__) |
| 76 | 76 | #include <SupportDefs.h> |
| 77 | 77 | #elif defined(DJGPP) /* SL : DJGPP doesn't support POSIX types ???? */ |
| 78 | 78 | typedef signed long long int64; |
| … |
… |
|
| 98 | 98 | typedef uint32_t uint32; |
| 99 | 99 | typedef uint16_t uint16; |
| 100 | 100 | typedef uint8_t uint8; |
| 101 | | #elif defined(__BEOS__) |
| | 101 | #elif defined(__BEOS__) || defined(__HAIKU__) |
| 102 | 102 | # include <support/SupportDefs.h> |
| 103 | 103 | #else // anything else (Linux, BSD, ...) |
| 104 | 104 | # include <inttypes.h> |
diff -urN /develop/projects/matroska/install/libebml-1.0.0/make/linux/Makefile /develop/projects/matroska/libebml-1.0.0/make/linux/Makefile
|
old
|
new
|
|
| 13 | 13 | # BeOS wants the libs and headers in /boot/home/config |
| 14 | 14 | ifeq (BeOS,$(shell uname -s)) |
| 15 | 15 | prefix=/boot/home/config |
| | 16 | # Haiku wants the libs and headers in /boot/common |
| | 17 | else ifeq (Haiku,$(shell uname -s)) |
| | 18 | prefix=/boot/common |
| 16 | 19 | else |
| 17 | 20 | prefix=/usr/local |
| 18 | 21 | endif |