aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPo Lu2023-03-11 17:42:24 +0800
committerPo Lu2023-03-11 17:42:24 +0800
commitc4b77b82decb757af0aff1b7420203fa0805b483 (patch)
tree40935b8762a673bda0eeb6ef167877c57beb0b0c /src
parent78faad633068d69dce25f246efb5374c21dae6bd (diff)
downloademacs-c4b77b82decb757af0aff1b7420203fa0805b483.tar.gz
emacs-c4b77b82decb757af0aff1b7420203fa0805b483.zip
Update Android port
* configure.ac (HAVE_MAILUTILS, with_mailutils) (ANDROID_SDK_8_OR_EARLIER, XCONFIGURE): Fix POP and mailutils configuration on Android. * java/Makefile.in: * src/callproc.c (syms_of_callproc): Avoid using built-in movemail when --with-mailutils.
Diffstat (limited to 'src')
-rw-r--r--src/callproc.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/callproc.c b/src/callproc.c
index 8d3519fdab2..a1811a3bb23 100644
--- a/src/callproc.c
+++ b/src/callproc.c
@@ -2178,7 +2178,10 @@ the system. */);
2178Use this instead of calling `movemail' directly, as `movemail' 2178Use this instead of calling `movemail' directly, as `movemail'
2179may have been renamed to comply with executable naming restrictions on 2179may have been renamed to comply with executable naming restrictions on
2180the system. */); 2180the system. */);
2181#if !defined HAVE_ANDROID || defined ANDROID_STUBIFY 2181 /* Don't change the name of `movemail' if Emacs is being built to
2182 use movemail from another source. */
2183#if !defined HAVE_ANDROID || defined ANDROID_STUBIFY \
2184 || defined HAVE_MAILUTILS
2182 Vmovemail_program_name = build_pure_c_string ("movemail"); 2185 Vmovemail_program_name = build_pure_c_string ("movemail");
2183#else 2186#else
2184 Vmovemail_program_name = build_pure_c_string ("libmovemail.so"); 2187 Vmovemail_program_name = build_pure_c_string ("libmovemail.so");