summaryrefslogtreecommitdiffstats
path: root/os/unix/config.m4
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2001-02-11 04:35:41 +0100
committerJeff Trawick <trawick@apache.org>2001-02-11 04:35:41 +0100
commitafb2418d1563a16271c22c66c0e4695ee50a882d (patch)
tree169b7357e82955ac5a9860c08fd3c080eaa2c84d /os/unix/config.m4
parentINIT_SIGLIST() is gone; stop using it (diff)
downloadapache2-afb2418d1563a16271c22c66c0e4695ee50a882d.tar.xz
apache2-afb2418d1563a16271c22c66c0e4695ee50a882d.zip
fix the check for killpg(); as it was, we didn't check for
killpg() and we got an ugly "killpg: not found" message on stderr during configure git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88086 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/unix/config.m4')
-rw-r--r--os/unix/config.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/os/unix/config.m4 b/os/unix/config.m4
index 73f4b38574..7d7252557f 100644
--- a/os/unix/config.m4
+++ b/os/unix/config.m4
@@ -3,5 +3,5 @@ if test "$OS" = "unix" ; then
AC_CHECK_HEADERS(sys/time.h sys/resource.h)
- AC_CHECK_FUNCS(setsid, killpg)
+ AC_CHECK_FUNCS(setsid killpg)
fi