]> granicus.if.org Git - apache/commitdiff
fix the check for killpg(); as it was, we didn't check for
authorJeff Trawick <trawick@apache.org>
Sun, 11 Feb 2001 03:35:41 +0000 (03:35 +0000)
committerJeff Trawick <trawick@apache.org>
Sun, 11 Feb 2001 03:35:41 +0000 (03:35 +0000)
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

index 73f4b38574f304c0e1dd8bb9cbec98f757f9e286..7d7252557f3201850d000d6240fc5c8cf7621234 100644 (file)
@@ -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