mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-14 08:05:37 +00:00
FS-5971 fix conditional compile for for windows x64
This commit is contained in:
parent
7256caf278
commit
8f51875e3e
@ -227,9 +227,10 @@ typedef intptr_t switch_ssize_t;
|
||||
|
||||
#ifdef WIN32
|
||||
|
||||
#ifdef WIN64
|
||||
#ifdef _WIN64
|
||||
#define SWITCH_SSIZE_T_FMT "lld"
|
||||
#define SWITCH_SIZE_T_FMT "lld"
|
||||
#define FS_64BIT 1
|
||||
#else
|
||||
#define SWITCH_SSIZE_T_FMT "d"
|
||||
#define SWITCH_SIZE_T_FMT "d"
|
||||
@ -268,7 +269,7 @@ typedef intptr_t switch_ssize_t;
|
||||
#endif
|
||||
|
||||
|
||||
#if UINTPTR_MAX == 0xffffffffffffffff || defined(_WIN64)
|
||||
#if UINTPTR_MAX == 0xffffffffffffffff
|
||||
#define FS_64BIT 1
|
||||
#endif
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user