Add support for authenticating MS-SNTP responses in Samba (ntp_signd). Supported is currently only the old MS-SNTP authenticator field. It's disabled by default. It can be enabled with the --enable-ntp-signd configure option and the ntpsigndsocket directive, which specifies the location of the Samba ntp_signd socket.
26 lines
549 B
Bash
Executable file
26 lines
549 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Try to compile chrony in various combinations of disabled features
|
|
|
|
cd ../..
|
|
|
|
for opts in \
|
|
"--enable-debug" \
|
|
"--enable-ntp-signd" \
|
|
"--enable-scfilter" \
|
|
"--disable-asyncdns" \
|
|
"--disable-ipv6" \
|
|
"--disable-privdrop" \
|
|
"--disable-readline" \
|
|
"--disable-rtc" \
|
|
"--disable-sechash" \
|
|
"--disable-cmdmon" \
|
|
"--disable-ntp" \
|
|
"--disable-refclock" \
|
|
"--disable-cmdmon --disable-ntp" \
|
|
"--disable-cmdmon --disable-refclock" \
|
|
"--disable-cmdmon --disable-ntp --disable-refclock"
|
|
do
|
|
./configure $opts
|
|
make "$@" || exit 1
|
|
done
|