Solaris 2.4 (which puts the function into the BSD compatibility libraries).
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10105
dc483132-0cff-0310-8789-
dd5450dbe970
+Mon Jun 30 13:21:34 1997 Kevin L Mitchell <klmitch@mit.edu>
+
+ * login.c (dofork): Solaris 2.4 puts killpg in the bsd compatibility
+ libraries. Autoconf correctly determined that it wasn't
+ available, but it wasn't conditionalized out. Added the
+ conditional, using kill(-child, SIGHUP) as a replacement,
+ as suggested by tlyu
+
Thu Jun 5 15:56:54 1997 Theodore Ts'o <tytso@rsts-11.mit.edu>
* login.c: Always use the new tty line discpline. [krb5-appl/428]
#endif
#endif
if (hungup)
+#ifdef HAVE_KILLPG
killpg(child, SIGHUP);
+#else
+ kill(-child, SIGHUP);
+#endif
if (pid == child)
break;
}