xref: /aosp_15_r20/external/libxml2/post_update.sh (revision 7c5688314b92172186c154356a6374bf7684c3ca)
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