Prevent empty test statement.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@730800 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Rainer Jung
2009-01-02 17:40:55 +00:00
parent 9e7431b072
commit 59b02aa75b
2 changed files with 2 additions and 2 deletions

View File

@ -11,7 +11,7 @@ fi
APACHE_MODULE(unixd, unix specific support, , , $unixd_mods_enable)
APACHE_MODULE(privileges, Per-virtualhost Unix UserIDs and enhanced security for Solaris, , , no, [
AC_CHECK_HEADERS(priv.h, [], [ap_HAVE_PRIV_H="no"])
AC_CHECK_HEADERS(priv.h, [ap_HAVE_PRIV_H="yes"], [ap_HAVE_PRIV_H="no"])
if test $ap_HAVE_PRIV_H = "no"; then
AC_MSG_WARN([Your system does not support privileges.])
enable_privileges="no"