summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2023-08-17 08:45:57 +0800
committerPo Lu <luangruo@yahoo.com>2023-08-17 08:45:57 +0800
commit4509cda5c943964fc8a2983fd90f10b9c255f97a (patch)
tree7282ff36a1cb667735ac65356fead2de6610f66f /configure.ac
parentcbe6b48b3620385a4c9eeb72b20d39cfe706da76 (diff)
downloademacs-4509cda5c943964fc8a2983fd90f10b9c255f97a.tar.gz
Update Android port
* configure.ac (emacs_cv_tputs_lib): Only circumvent termcap if Android windowing support is enabled. (bug#65340) * etc/PROBLEMS: Fix typo in section recouting problems with the Anonymous Pro font. * lisp/subr.el (event-start, event-end): Return the mouse position list tied to touchscreen-begin and end events. Reported by Stefan Monnier <monnier@iro.umontreal.ca>. * lisp/version.el (emacs-build-system, emacs-build-time) (emacs-repository-get-version, emacs-repository-get-branch): Bypass Android specific code on non-GUI builds running on Android. (bug#65340) * lisp/wid-edit.el (widget-event-point): Remove now redundant code.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 8120935978d..4cf6751ab82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5992,7 +5992,7 @@ AC_DEFUN([tputs_link_source], [
# than to expect to find it in ncurses.
# Also we need tputs and friends to be able to build at all.
AC_CACHE_CHECK([for library containing tputs], [emacs_cv_tputs_lib],
-[if test "${opsys}" = "mingw32" || test "$opsys" = "android"; then
+[if test "${opsys}" = "mingw32" || test x"$REALLY_ANDROID" = "xyes"; then
emacs_cv_tputs_lib='none required'
else
# curses precedes termcap because of AIX (Bug#9736#35) and OpenIndiana.