;;
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."