]> git.eshelyaron.com Git - emacs.git/commitdiff
Update Android port
authorPo Lu <luangruo@yahoo.com>
Fri, 17 Mar 2023 11:26:16 +0000 (19:26 +0800)
committerPo Lu <luangruo@yahoo.com>
Fri, 17 Mar 2023 11:26:16 +0000 (19:26 +0800)
* configure.ac:
* m4/ndk-build.m4 (ndk_INIT):
(ndk_LATE): Avoid AC_REQUIRE magic.

configure.ac
m4/ndk-build.m4

index 1dfd880eaa9b3e7a110f913f3b400581cadd257d..44dbf60f938f72f34a22c2a74bf3d9b5890f737e 100644 (file)
@@ -165,7 +165,7 @@ fi
 AC_CANONICAL_HOST
 AC_CANONICAL_BUILD
 
-if test "$XCONFIGURE" = "android"; then
+AS_IF([test "$XCONFIGURE" = "android"],[
   # Initialize the Android NDK build system.  Make sure to use the
   # passed through NDK path.
   # Make sure to pass through the CFLAGS, as older versions of the
@@ -174,8 +174,7 @@ if test "$XCONFIGURE" = "android"; then
   with_ndk_cxx_shared="$android_ndk_cxx_shared"
   with_ndk_cxx="$android_ndk_cxx"
   ndk_INIT([$android_abi], [$ANDROID_SDK], [cross/ndk-build],
-           [$ANDROID_CFLAGS])
-fi
+           [$ANDROID_CFLAGS])])
 
 case $host in
  *-mingw*)
index 077781ec38cb4404528638268799c66319040ebd..9af681a08c8a9620d3bdab712644b7474cf02666 100644 (file)
@@ -38,7 +38,7 @@ AC_ARG_WITH([ndk_cxx],
 # DIR should be a directory containing the Makefile.in actually
 # implementing the Android NDK build system.
 
-AC_DEFUN_ONCE([ndk_INIT],
+AC_DEFUN([ndk_INIT],
 [
 # Look for Android.mk files.
 ndk_module_files=
@@ -347,13 +347,18 @@ AS_IF([test -n "$with_ndk_cxx"], [CXX=$with_ndk_cxx],
 # required C and C++ headers.
 
 AC_DEFUN([ndk_LATE],
-[
+[dnl
+dnl This calls AC_REQUIRE([AC_PROG_CXX]), leading to configure looking
+dnl for a C++ compiler.  However, the language is not restored
+dnl afterwards if not `$ndk_INITIALIZED'.
 AS_IF([test "$ndk_INITIALIZED" = "yes"],[
   AS_IF([test -n "$CXX"], [AC_LANG_PUSH([C++])
     AC_CHECK_HEADER([string], [ndk_working_cxx=yes],
       [AC_MSG_WARN([Your C++ compiler is not properly set up, and\
  the standard library headers could not be found.])])
     AC_LANG_POP([C++])])])
+dnl Thus, manually switch back to C here.
+AC_LANG([C])
 ])
 
 # ndk_SEARCH_MODULE(MODULE, NAME, ACTION-IF-FOUND, [ACTION-IF-NOT-FOUND])