summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Querna <pquerna@apache.org>2006-07-15 10:01:33 +0000
committerPaul Querna <pquerna@apache.org>2006-07-15 10:01:33 +0000
commit8744237828966e0474c027a0c07e82d3bfd06154 (patch)
treefdbc1062eb6a2b7f05cea92fb1b8aa409a3fa673
parentbf508e3c681db312d092d06bbe9b144782dc5982 (diff)
downloadhttpd-8744237828966e0474c027a0c07e82d3bfd06154.tar.gz
Disable the getpwnam and getgrnam functions, since they aren't available on win32.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@422201 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--configure.in2
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 14b1ba2d9f..68782993f4 100644
--- a/configure.in
+++ b/configure.in
@@ -297,6 +297,8 @@ case $host in
APR_SETVAR(APACHE_MPM, [winnt])
APR_ADDTO(CPPFLAGS, [-DAP_DECLARE_EXPORT])
APR_SETIFNULL(ac_cv_func_times, [no])
+ APR_SETIFNULL(ac_cv_func_getpwnam, [no])
+ APR_SETIFNULL(ac_cv_func_getgrnam, [no])
;;
*aix*)
aixver=`echo $host | sed 's/^[[^0-9]]*//' | sed 's/\.//g'`