kou commented on code in PR #43407: URL: https://github.com/apache/arrow/pull/43407#discussion_r1690492996
########## cpp/src/arrow/vendored/musl/strptime.c: ########## @@ -18,8 +18,10 @@ #undef HAVE_LANGINFO #ifndef _WIN32 +# if !(defined(__ANDROID__) && __ANDROID_API__ < 26) Review Comment: Can we unify this condition? ```c #if !defined(_WIN32) && !(defined(__ANDROID__) && __ANDROID_API__ < 26) ``` BTW, is Android API < 26 still supported? It seems that Android API 25 is Android 7.1 based on https://developer.android.com/guide/topics/manifest/uses-sdk-element#api-level-table . It seems that Android 11 or earlier reached EOL based on https://endoflife.date/android . -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
