• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set -e
4
5T="${ANDROID_BUILD_TOP}"
6cd $(dirname "$0")
7
8source ${T}/build/envsetup.sh
9
10CONFIGURE_ARGS=(
11  --enable-ipv6
12  --without-ftp
13  --without-http
14  --without-html
15  --without-legacy
16  --without-iconv
17  --without-zlib
18  --without-lzma
19)
20
21# Show the commands on the terminal.
22set -x
23
24./autogen.sh
25./configure "${CONFIGURE_ARGS[@]}"
26
27make
28