python/cryptography: native 64-bit build
[unleashed-userland.git] / components / indri / patches / bigendian.patch
blob976417bf239d4b621a78c9f6aaa082a2a7dc009e
1 Indri tries to define htonll and ntohll function which clash with solaris definitions
2 --- indri-5.4/contrib/lemur/include/lemur/lemur-compat.hpp 2013-10-08 00:25:53.513213629 +0200
3 +++ indri-5.4/contrib/lemur/include/lemur/lemur-compat.hpp 2013-10-08 00:25:34.165330285 +0200
4 @@ -212,6 +212,8 @@
5 #endif
7 #if defined(WORDS_BIGENDIAN)
8 +#undef htonll
9 +#undef ntohll
10 inline UINT64 htonll( UINT64 native ) {
11 return native;