summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2012-06-01 12:57:39 +0000
committerJoe Orton <jorton@apache.org>2012-06-01 12:57:39 +0000
commitbd4d8fd4a20798dfb60508c0e53f920d6912ed6e (patch)
tree0da109664fe26e0e33cde840b3a78135ec87fc84 /configure.in
parent19e13fb6cc0463089166d08ab7d962d5e4bf856f (diff)
downloadhttpd-bd4d8fd4a20798dfb60508c0e53f920d6912ed6e.tar.gz
* configure.in: Correct handling of --with-suexec-logfile in r1341905,
thanks to rpluem. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1345147 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index ead96cd09a..1c61b190c3 100644
--- a/configure.in
+++ b/configure.in
@@ -717,6 +717,8 @@ APACHE_HELP_STRING(--with-suexec-gidmin,Minimal allowed GID),[
AC_ARG_WITH(suexec-logfile,
APACHE_HELP_STRING(--with-suexec-logfile,Set the logfile),[
if test "x$withval" = "xyes"; then
+ AC_MSG_ERROR([log filename required for --with-suexec-logfile option])
+ elif test "x$withval" != "xno"; then
AC_DEFINE_UNQUOTED(AP_LOG_EXEC, "$withval", [SuExec log file])
fi
])