mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 18:48:13 -07:00
Chg: android adaptions from @xianglin1998
This commit is contained in:
parent
914316d194
commit
1bf32aad90
4 changed files with 18 additions and 6 deletions
|
@ -33,9 +33,13 @@
|
|||
#define JSON_INTEGER_IS_LONG_LONG 1
|
||||
|
||||
/* If locale.h and localeconv() are available, define to 1,
|
||||
otherwise to 0. */
|
||||
otherwise to 0. tips: android don't support localeconv()
|
||||
*/
|
||||
#if defined(__ANDROID__) || defined(ANDROID)
|
||||
#define JSON_HAVE_LOCALECONV 0
|
||||
#else
|
||||
#define JSON_HAVE_LOCALECONV 1
|
||||
|
||||
#endif
|
||||
/* If __atomic builtins are available they will be used to manage
|
||||
reference counts of json_t. */
|
||||
#define JSON_HAVE_ATOMIC_BUILTINS 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue