Merge pull request #56 from bettse/macos_endianess_fixes
Macos endianess fixes
This commit is contained in:
commit
b131f74ea6
2 changed files with 7 additions and 2 deletions
|
@ -30,9 +30,14 @@
|
|||
# include <endian.h>
|
||||
#endif
|
||||
|
||||
#if defined(HAVE_COREFOUNDATION_COREFOUNDATION_H)
|
||||
# include <CoreFoundation/CoreFoundation.h>
|
||||
#endif
|
||||
|
||||
#include <nfc/nfc.h>
|
||||
|
||||
#include <freefare.h>
|
||||
#include "../libfreefare/freefare_internal.h"
|
||||
|
||||
#define NDEF_BUFFER_SIZE 512
|
||||
|
||||
|
|
|
@ -49,14 +49,14 @@
|
|||
# define be16toh(x) betoh16(x)
|
||||
#endif
|
||||
|
||||
#if !defined(le32toh) && defined(CFSwapInt32LittleToHost)
|
||||
#if !defined(le32toh) && defined(HAVE_COREFOUNDATION_COREFOUNDATION_H)
|
||||
# define be32toh(x) CFSwapInt32BigToHost(x)
|
||||
# define htobe32(x) CFSwapInt32HostToBig(x)
|
||||
# define le32toh(x) CFSwapInt32LittleToHost(x)
|
||||
# define htole32(x) CFSwapInt32HostToLittle(x)
|
||||
#endif
|
||||
|
||||
#if !defined(le16toh) && defined(CFSwapInt16LittleToHost)
|
||||
#if !defined(le16toh) && defined(HAVE_COREFOUNDATION_COREFOUNDATION_H)
|
||||
# define be16toh(x) CFSwapInt16BigToHost(x)
|
||||
# define htobe16(x) CFSwapInt16HostToBig(x)
|
||||
# define le16toh(x) CFSwapInt16LittleToHost(x)
|
||||
|
|
Loading…
Reference in a new issue