1#!/bin/bash 2 3set -e 4 5cd $(dirname "$0") 6 7CONFIGURE_ARGS=( 8 ac_cv_func_secure_getenv=no 9 ac_cv_header_bzlib_h=no 10) 11 12# Show the commands on the terminal. 13set -x 14 15./autogen.sh 16./configure "${CONFIGURE_ARGS[@]}" 17 18make 19