diff options
author | Memphiz <memphis@machzwo.de> | 2013-08-13 23:06:54 +0200 |
---|---|---|
committer | perpe <msperpe@googlemail.com> | 2013-09-13 16:20:10 +0200 |
commit | 981380561992d7d0e87f07526d4a2a49d2f672f7 (patch) | |
tree | 6290c42460a03a92aece9250bc2d9e23fcc2f34f /configure.in | |
parent | 429ce9bc69cdee21d3f3be23c1f7147f25b42db6 (diff) |
[droid] - allow to build android for x86 platforms
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 0337705b66..8fcbe86cbe 100644 --- a/configure.in +++ b/configure.in @@ -606,13 +606,19 @@ ffmpeg_target_os=$(tolower $(uname -s)) # host detection and setup case $host in - i*86*-android-linux-gnu*) + i*86*-linux-android*) target_platform=target_android ARCH="i486-linux" use_arch="x86" use_cpu="i686" ffmpeg_target_os=linux - ;; + use_joystick=no + use_gles=yes + use_optical_drive=no + use_sdl=no + use_x11=no + build_shared_lib=yes + ;; i*86*-linux-gnu*) ARCH="i486-linux" ;; |