mirror of
https://github.com/sudo-project/sudo.git
synced 2025-08-28 12:57:50 +00:00
Add --with-logfile and --with-timedir
This commit is contained in:
parent
533fbe0711
commit
56b1565834
24
configure.in
24
configure.in
@ -165,6 +165,30 @@ AC_ARG_WITH(DCE, [ --with-DCE enable DCE support],
|
|||||||
;;
|
;;
|
||||||
esac])
|
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],
|
AC_ARG_WITH(incpath, [ --with-incpath additional places to look for include files],
|
||||||
[case $with_incpath in
|
[case $with_incpath in
|
||||||
yes) echo "Must give --with-incpath an argument."
|
yes) echo "Must give --with-incpath an argument."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user