bpo-29040: Support building Android with Unified Headers by xdegaye · Pull Request #4492 · python/cpython
-
-
Notifications
You must be signed in to change notification settings - Fork 34.7k
Merged
Conversation
|
|
||
| #ifdef __ANDROID__ | ||
| #include <android/api-level.h> | ||
| /* nl_langinfo() is declared as __INTRODUCED_IN_FUTURE in langinfo.h. */ |
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should be better as:
In NDK r14 nl_langinfo() is declared as __INTRODUCED_IN_FUTURE in langinfo.h.
As a side note, since NDK r15, nl_langinfo() is declared as __INTRODUCED_IN(26).
yan12125 pushed a commit to yan12125/python3-android that referenced this pull request
xdegaye fixes the same problem with a simpler approach [1]. Not sure if that will break applications on API 26 or not (Android O, Oreo) [1] python/cpython#4492
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters