2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 01:49:11 +00:00

Use Solaris audit for Solaris 11, not BSM audit.

BSM audit is no longer supported in Solaris 11.4.
This commit is contained in:
Todd C. Miller 2020-06-01 12:47:38 -06:00
parent 2dd1e1907d
commit e1aa76de16

View File

@ -412,9 +412,11 @@ case "$osversion" in
configure_opts="${configure_opts}${configure_opts+$tab}--with-project"
if [ $osrelease -ge 11 ]; then
configure_opts="${configure_opts}${configure_opts+$tab}--with-bsm-audit"
configure_opts="${configure_opts}${configure_opts+$tab}--with-solaris-audit"
# Encrypted remote I/O log support.
with_openssl=true
elif [ $osrelease -ge 10 ]; then
configure_opts="${configure_opts}${configure_opts+$tab}--with-bsm-audit"
fi
;;
*)