You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by jo...@apache.org on 2012/06/01 14:57:40 UTC

svn commit: r1345147 - /httpd/httpd/trunk/configure.in

Author: jorton
Date: Fri Jun  1 12:57:39 2012
New Revision: 1345147

URL: http://svn.apache.org/viewvc?rev=1345147&view=rev
Log:
* configure.in: Correct handling of --with-suexec-logfile in r1341905,
  thanks to rpluem.

Modified:
    httpd/httpd/trunk/configure.in

Modified: httpd/httpd/trunk/configure.in
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/configure.in?rev=1345147&r1=1345146&r2=1345147&view=diff
==============================================================================
--- httpd/httpd/trunk/configure.in (original)
+++ httpd/httpd/trunk/configure.in Fri Jun  1 12:57:39 2012
@@ -717,6 +717,8 @@ APACHE_HELP_STRING(--with-suexec-gidmin,
 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
 ])