diff options
author | Keith Packard <keithp@keithp.com> | 2019-07-16 11:15:20 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2019-08-04 20:30:20 -0700 |
commit | 489b429dbeb8b0fb69881161ff32fdc2fdfcf9f8 (patch) | |
tree | 4eadd81f7c6b6a18f2072b90bb425cabf8885e19 /configure.ac | |
parent | 93401542ab1bf53c5b7b2a2cad5da97e44d7244e (diff) |
altosdroid: Hack up build to 'work' for now
Android apps are now build with gradle instead of ant; the ant bits
are stale and only work with old java. Use old java to run ant while
using the current java compiler to build things.
This requires a custom version of the google play API library.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index cc6a23d4..56bd70ce 100644 --- a/configure.ac +++ b/configure.ac @@ -70,7 +70,7 @@ AC_ARG_WITH(jvm, AS_HELP_STRING([--with-jvm=PATH], if test "x$JVM" = "xauto"; then AC_MSG_CHECKING([JVM]) - for jvm in default-java java-6-openjdk java-7-openjdk java-8-openjdk java-9-openjdk java-10-openjdk java-11-openjdk java-12-openjdk java-13-openjdk java-6-sun; do + for jvm in default-java java-6-openjdk java-7-openjdk java-8-openjdk java-9-openjdk java-10-openjdk java-11-openjdk java-12-openjdk java-13-openjdk java-6-sun java-8-openjdk-amd64; do if test "x$JVM" = "xauto"; then INCLUDE="/usr/lib/jvm/$jvm/include" if test -f "$INCLUDE"/jni.h; then |