From c7ca46b0a7c7184ff580f930649bfc432954d0d5 Mon Sep 17 00:00:00 2001 From: Po Lu Date: Sat, 6 May 2023 20:32:08 +0800 Subject: [PATCH] Update Android port * configure.ac (LIBGMP_CFLAGS): Avoid non portable test expression. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 750220b5129..832e5a6bafd 100644 --- a/configure.ac +++ b/configure.ac @@ -7261,7 +7261,7 @@ LIBS=$SAVE_LIBS # Set up libgmp on Android. Make sure to override what gnulib has # found. LIBGMP_CFLAGS= -if test "$REALLY_ANDROID" == "yes" && test "$with_libgmp" != "no"; then +if test "$REALLY_ANDROID" = "yes" && test "$with_libgmp" != "no"; then HAVE_LIBGMP=no ndk_SEARCH_MODULE([libgmp], [LIBGMP], [HAVE_LIBGMP=yes]) -- 2.39.5