summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2016-07-02 17:17:53 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2016-07-02 17:17:53 +0200
commit3b219e5487ae274722f0c4cef7f24f9246bf6abd (patch)
treec4b9b649902b0f6ad891512c34e6a4647903364c /configure.ac
parentef47ce2397d4ed453fe01d994d13a13f442ec3bb (diff)
allow android ndk version 12.1.x
Change-Id: Id1bbc683afda021c0801327bceee10cb4f28e9f6
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 39bc17f059fe..80ae2ac0a852 100644
--- a/configure.ac
+++ b/configure.ac
@@ -360,10 +360,10 @@ if test -n "$with_android_ndk"; then
case $ANDROID_NDK_VERSION in
r9*|r10*)
;;
- 11.1.*)
+ 11.1.*|12.1.*)
;;
*)
- AC_MSG_ERROR([Unsupported NDK version $ANDROID_NDK_VERSION, only r9*, r10* and 11.1.* versions are supported])
+ AC_MSG_ERROR([Unsupported NDK version $ANDROID_NDK_VERSION, only r9*, r10*, 11.1.* and 12.1.* are supported])
;;
esac