mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 17:04:24 +09:00
Fix build on older 32-bit Ubuntu releases
Some older 32-bit versions of gcc fail on '#elif __x86_64__'. This applies at least to what Ubuntu 14.04 and 15.04 have as the default compiler.
This commit is contained in:
@@ -285,7 +285,7 @@ typedef void *PVOID64, *LPVOID64;
|
||||
#if WINPR_HAVE_STDINT_H
|
||||
typedef intptr_t INT_PTR;
|
||||
typedef uintptr_t UINT_PTR;
|
||||
#elif __x86_64__
|
||||
#elif defined (__x86_64__)
|
||||
typedef __int64 INT_PTR;
|
||||
typedef unsigned __int64 UINT_PTR;
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user