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

Add --with-logfile and --with-timedir

This commit is contained in:
Todd C. Miller 1998-03-28 00:46:12 +00:00
parent 533fbe0711
commit 56b1565834

View File

@ -165,6 +165,30 @@ AC_ARG_WITH(DCE, [ --with-DCE enable DCE support],
;;
esac])
AC_ARG_WITH(logfile, [ --with-logfile path to the sudo log file],
[case $with_logfile in
yes) echo "Must give --with-logfile an argument."
exit 1
;;
no) echo "Sorry, --without-logfile not supported."
exit 1
;;
*) echo "Using ${with_logfile} as the path to sudo's log file."
;;
esac])
AC_ARG_WITH(timedir, [ --with-timedir path to the sudo timestamp dir],
[case $with_timedir in
yes) echo "Must give --with-timedir an argument."
exit 1
;;
no) echo "Sorry, --without-timedir not supported."
exit 1
;;
*) echo "Using ${with_timedir} as the path to sudo's log file."
;;
esac])
AC_ARG_WITH(incpath, [ --with-incpath additional places to look for include files],
[case $with_incpath in
yes) echo "Must give --with-incpath an argument."