From e0fca3e7a70316e86b2d9ab7142d1ce9219e7e9c Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Tue, 2 Apr 2024 08:43:00 -0300 Subject: [PATCH] gunixmounts: Use __ANDROID__ to test for the OS, not __BIONIC__ See https://android.googlesource.com/platform/bionic/+/HEAD/docs/defines.md --- gio/gunixmounts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gio/gunixmounts.c b/gio/gunixmounts.c index a7a9363cb..8faac7a81 100644 --- a/gio/gunixmounts.c +++ b/gio/gunixmounts.c @@ -46,7 +46,7 @@ #include #include -#if defined(__BIONIC__) && (__ANDROID_API__ < 26) +#if defined(__ANDROID__) && (__ANDROID_API__ < 26) #include /* the shared object of recent bionic libc's have hasmntopt symbol, but some a possible common build environment for android, termux ends