Merge pull request #56 from bettse/macos_endianess_fixes

Macos endianess fixes
This commit is contained in:
Romain Tartière 2017-04-04 10:08:51 +02:00 committed by GitHub
commit b131f74ea6
2 changed files with 7 additions and 2 deletions

View file

@ -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

View file

@ -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)