mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
FS-8780: fix the include for Windows builds that point to in tree lib
This commit is contained in:
parent
a74fc71b67
commit
eadb3f890f
@ -21,7 +21,7 @@
|
|||||||
# define ZRTP_PLATFORM ZP_ANDROID
|
# define ZRTP_PLATFORM ZP_ANDROID
|
||||||
# elif defined(__FreeBSD__)
|
# elif defined(__FreeBSD__)
|
||||||
# define ZRTP_PLATFORM ZP_BSD
|
# define ZRTP_PLATFORM ZP_BSD
|
||||||
# elif defined(linux) || defined(__linux)
|
# elif defined(linux) || defined(__linux__) || defined(__linux)
|
||||||
# include <linux/version.h>
|
# include <linux/version.h>
|
||||||
# define ZRTP_PLATFORM ZP_LINUX
|
# define ZRTP_PLATFORM ZP_LINUX
|
||||||
# elif defined(__MACOSX__) || defined (__APPLE__) || defined (__MACH__)
|
# elif defined(__MACOSX__) || defined (__APPLE__) || defined (__MACH__)
|
||||||
@ -88,7 +88,13 @@
|
|||||||
*/
|
*/
|
||||||
#define ZRTP_BYTE_ORDER ZBO_BIG_ENDIAN
|
#define ZRTP_BYTE_ORDER ZBO_BIG_ENDIAN
|
||||||
|
|
||||||
#elif defined(ARM) || defined(_ARM_) || defined(ARMV4) || defined(__arm__)
|
#elif defined(__AARCH64EB__)
|
||||||
|
/*
|
||||||
|
* aarch64, big endian
|
||||||
|
*/
|
||||||
|
#define ZRTP_BYTE_ORDER ZBO_BIG_ENDIAN
|
||||||
|
|
||||||
|
#elif defined(ARM) || defined(_ARM_) || defined(ARMV4) || defined(__arm__) || defined(__AARCH64EL__)
|
||||||
/*
|
/*
|
||||||
* ARM, default to little endian
|
* ARM, default to little endian
|
||||||
*/
|
*/
|
||||||
|
Loading…
x
Reference in New Issue
Block a user