Update Android port

* configure.ac (LIBGMP_CFLAGS): Avoid non portable test
expression.
This commit is contained in:
Po Lu 2023-05-06 20:32:08 +08:00
parent 3198b7dc56
commit c7ca46b0a7

View file

@ -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])