From owner-freebsd-current Mon Apr 24 08:23:14 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id IAA07782 for current-outgoing; Mon, 24 Apr 1995 08:23:14 -0700 Received: from zibbi.mikom.csir.co.za (some.schmuck.lame.delegated.to.RAIN.PSG.COM [146.64.24.58]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id IAA07769 for ; Mon, 24 Apr 1995 08:22:55 -0700 Received: (from jhay@localhost) by zibbi.mikom.csir.co.za (8.6.11/8.6.6) id RAA06382 for current@FreeBSD.ORG; Mon, 24 Apr 1995 17:21:47 +0200 From: John Hay Message-Id: <199504241521.RAA06382@zibbi.mikom.csir.co.za> Subject: libc don't make To: current@FreeBSD.org (FreeBSD-current) Date: Mon, 24 Apr 1995 17:21:46 +0200 (SAT) X-Mailer: ELM [version 2.4 PL23] Content-Type: text Content-Length: 1410 Sender: current-owner@FreeBSD.org Precedence: bulk The last changes to libc broke it:( Setregid and setreuid don't exist in compat-43 anymore. Here is a fix for compat-43/Makefile.inc to fix it. Something that bothers me is that setregid.2 and setreuid.2 don't show up in my Attic directory. It look like they were directly moved to libc/sys. Is that the correct way to do it? Won't that break if a checkout of a previous TAG is done? -- John Hay -- jhay@mikom.csir.co.za *** src/lib/libc/compat-43/Makefile.inc.org Sun Aug 28 19:08:36 1994 --- src/lib/libc/compat-43/Makefile.inc Mon Apr 24 17:09:13 1995 *************** *** 4,14 **** .PATH: ${.CURDIR}/${MACHINE}/compat-43 ${.CURDIR}/compat-43 SRCS+= creat.c gethostid.c getwd.c killpg.c sethostid.c setpgrp.c \ ! setregid.c setreuid.c setrgid.c setruid.c sigcompat.c MAN2+= compat-43/creat.2 compat-43/killpg.2 \ ! compat-43/setregid.2 compat-43/setreuid.2 compat-43/sigblock.2 \ ! compat-43/sigpause.2 compat-43/sigsetmask.2 compat-43/sigvec.2 MAN3+= compat-43/gethostid.3 compat-43/setruid.3 --- 4,14 ---- .PATH: ${.CURDIR}/${MACHINE}/compat-43 ${.CURDIR}/compat-43 SRCS+= creat.c gethostid.c getwd.c killpg.c sethostid.c setpgrp.c \ ! setrgid.c setruid.c sigcompat.c MAN2+= compat-43/creat.2 compat-43/killpg.2 \ ! compat-43/sigblock.2 compat-43/sigpause.2 \ ! compat-43/sigsetmask.2 compat-43/sigvec.2 MAN3+= compat-43/gethostid.3 compat-43/setruid.3