From: Jeff Trawick Date: Sun, 11 Feb 2001 03:35:41 +0000 (+0000) Subject: fix the check for killpg(); as it was, we didn't check for X-Git-Tag: 2.0.10~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=afb2418d1563a16271c22c66c0e4695ee50a882d;p=apache 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 --- 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