summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-02-05 23:02:14 +0800
committerPo Lu <luangruo@yahoo.com>2023-02-05 23:02:14 +0800
commit98c90135fe5f3729a3fa6e9a724d04a78b2cd514 (patch)
treee4d05533619b88dac6f45768af837629675b65e2 /m4
parent1b8beed9608b56889f23b49704033ef6437462cd (diff)
downloademacs-98c90135fe5f3729a3fa6e9a724d04a78b2cd514.tar.gz
Update Android port
* INSTALL.android: Explain how to build selinux. * configure.ac: Enable selinux on Android. * cross/ndk-build/ndk-build-shared-library.mk: ($(call objname,$(LOCAL_MODULE),$(basename $(1))))::($$(error Unsupported suffix)::(NDK_CFLAGS_$(LOCAL_MODULE)): * cross/ndk-build/ndk-build-static-library.mk: ($(call objname,$(LOCAL_MODULE),$(basename $(1))))::($$(error Unsupported suffix)::(NDK_CFLAGS_$(LOCAL_MODULE)): Correctly handle files with a .cc suffix, and clang-specific asflags. * cross/ndk-build/ndk-clear-vars.mk: Handle AOSP extensions LOCAL_ADDITIONAL_DEPENDENCIES, LOCAL_CLANG_ASFLAGS_$(NDK_BUILD_ARCH) and LOCAL_IS_HOST_MODULE. * doc/emacs/android.texi (Android Startup): Explain emacsclient wrapper. * java/org/gnu/emacs/EmacsView.java (EmacsView): New flag `isCurrentlyTextEditor'. (showOnScreenKeyboard, hideOnScreenKeyboard): Set as appropriate. (onCheckIsTextEditor): Return its value. * lisp/touch-screen.el (touch-screen-handle-scroll): Don't ding at buffer limits. * m4/ndk-build.m4: Improve doc. * src/Makefile.in (LIBSELINUX_CFLAGS): New variable. (EMACS_CFLAGS): Add it.
Diffstat (limited to 'm4')
-rw-r--r--m4/ndk-build.m48
1 files changed, 6 insertions, 2 deletions
diff --git a/m4/ndk-build.m4 b/m4/ndk-build.m4
index 0ab6197d735..888b587af02 100644
--- a/m4/ndk-build.m4
+++ b/m4/ndk-build.m4
@@ -90,6 +90,8 @@ ndk_replace_pkg_config_package () {
done
}
+# ndk_parse_pkg_config_string PKG_CONFIG_STRING
+# ---------------------------------------------
# Parse a pkg-config style list of modules. Place the resulting list
# in ndk_modules.
@@ -109,8 +111,10 @@ ndk_parse_pkg_config_string () {
done
}
-# Resolve $1, a single import. Prepend its makefile to ndk_MAKEFILES
-# if found. Also, prepend all includes to the variable
+# ndk_resolve_import_module MODULE
+# --------------------------------
+# Resolve MODULE, a single import. Prepend its makefile to
+# ndk_MAKEFILES if found. Also, prepend all includes to the variable
# ndk_import_includes.
ndk_resolve_import_module () {