From owner-freebsd-hackers Thu Oct 18 13:38:36 2001 Delivered-To: freebsd-hackers@freebsd.org Received: from relay.gnf.org (relay.gnf.org [208.44.31.36]) by hub.freebsd.org (Postfix) with ESMTP id 3717837B40A; Thu, 18 Oct 2001 13:38:26 -0700 (PDT) Received: from mail.gnf.org (smtp.gnf.org [10.0.0.11]) by relay.gnf.org (8.11.6/8.11.6) with ESMTP id f9IKcQs31735; Thu, 18 Oct 2001 13:38:26 -0700 Received: by mail.gnf.org (Postfix, from userid 888) id 8F2DC11E508; Thu, 18 Oct 2001 13:35:28 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by mail.gnf.org (Postfix) with ESMTP id 889A311A572; Thu, 18 Oct 2001 13:35:28 -0700 (PDT) Date: Thu, 18 Oct 2001 13:35:28 -0700 (PDT) From: Gordon Tetlow To: Dag-Erling Smorgrav Cc: , Subject: Re: New rc.d init script roadmap In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-hackers@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 18 Oct 2001, Dag-Erling Smorgrav wrote: > Dag-Erling Smorgrav writes: > > Your rcorder patch is incorrect. > > Here's a correct patch. Does anybody mind if I commit this and > connect rcorder(8) to the build? Actually, fparseln() is defined in libutil.h (per the man page). I don't have my current box available (power outage at home), but if you could look over it, it should work. -gordon Index: rcorder.c =================================================================== RCS file: /home/ncvs/src/sbin/rcorder/rcorder.c,v retrieving revision 1.1.1.1 diff -u -r1.1.1.1 rcorder.c --- rcorder.c 16 Jun 2001 07:16:14 -0000 1.1.1.1 +++ rcorder.c 18 Oct 2001 19:45:27 -0000 @@ -41,7 +41,11 @@ #include #include #include +#if defined(__NetBSD__) #include +#else +#include +#endif #include "ealloc.h" #include "sprite.h" To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message