Fix so file for x64 android

In particular it affects Pixelbook which implements x64 Android
This commit is contained in:
Vladimir Serbinenko 2020-01-28 17:01:42 +01:00
parent 14c24e1fab
commit 6d8cbd2c4b

View File

@ -522,7 +522,7 @@ static bool android_input_init_handle(void)
#ifdef HAVE_DYNAMIC
if (libandroid_handle != NULL) /* already initialized */
return true;
#ifdef ANDROID_AARCH64
#if defined (ANDROID_AARCH64) || defined(ANDROID_X64)
if ((libandroid_handle = dlopen("/system/lib64/libandroid.so",
RTLD_LOCAL | RTLD_LAZY)) == 0)
return false;