Skip to content

Commit c5b4bd6

Browse files
author
Po Lu
committed
Expressly disable large file APIs on Android 4.4 and earlier
* configure.ac (CFLAGS): Add -D_FILE_OFFSET_BITS=32 on SDK 20 and earlier that unserviceable functions may not be selected. Problem reported by Ruth Elburn <ruth@noreply.invalid>.
1 parent e091967 commit c5b4bd6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

configure.ac

+6
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@ if test "$XCONFIGURE" = "android"; then
4040
CFLAGS="$ANDROID_CFLAGS -Werror=implicit-function-declaration"
4141
# Don't explicitly enable support for large files unless Emacs is
4242
# being built for API 21 or later. Otherwise, mmap does not work.
43+
#
44+
# Moreover, 64-bit variants of file IO functions in the C library are
45+
# liable to fail with ENOSYS or EINVAL on earlier API versions, and as
46+
# such their definitions must be explicitly disabled on NDK releases
47+
# that enable them by default.
4348
AS_IF([test "$ANDROID_SDK" -lt "21"], [
49+
CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=32"
4450
enable_largefile=no
4551
enable_year2038=no])
4652
fi

0 commit comments

Comments
 (0)