mirror of
https://gitlab.com/chrony/chrony.git
synced 2025-12-03 17:35:06 -05:00
18 lines
376 B
Bash
Executable File
18 lines
376 B
Bash
Executable File
#!/bin/sh
|
|
|
|
cd ../..
|
|
|
|
for opts in \
|
|
"--enable-debug" \
|
|
"--host-system=Linux" \
|
|
"--host-system=NetBSD" \
|
|
"--host-system=FreeBSD" \
|
|
"--without-nettle" \
|
|
"--without-nettle --without-gnutls" \
|
|
"--without-nettle --without-gnutls --without-nss" \
|
|
"--without-nettle --without-gnutls --without-nss --without-tomcrypt"
|
|
do
|
|
./configure $opts
|
|
scan-build make "$@" || exit 1
|
|
done
|