From afb2418d1563a16271c22c66c0e4695ee50a882d Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Sun, 11 Feb 2001 03:35:41 +0000 Subject: [PATCH] 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 --- os/unix/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.50.1