From: Joe Orton Date: Fri, 1 Jun 2012 12:57:39 +0000 (+0000) Subject: * configure.in: Correct handling of --with-suexec-logfile in r1341905, X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1d035a7706338fce51ba33e1783c9425dff67247;p=thirdparty%2Fapache%2Fhttpd.git * 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 --- diff --git a/configure.in b/configure.in index ead96cd09aa..1c61b190c39 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 ])