From owner-freebsd-multimedia@FreeBSD.ORG Tue May 17 10:33:03 2005 Return-Path: Delivered-To: freebsd-multimedia@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C13516A4CE for ; Tue, 17 May 2005 10:33:03 +0000 (GMT) Received: from sohara.org (sohara.org [192.220.64.179]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E48243D69 for ; Tue, 17 May 2005 10:33:03 +0000 (GMT) (envelope-from steve@sohara.org) Received: (qmail 92166 invoked by uid 16563); 17 May 2005 10:32:58 -0000 Received: from unknown (HELO sohara-lt) ([217.12.14.240]) (envelope-sender ) by 192.220.64.179 (qmail-ldap-1.03) with SMTP for ; 17 May 2005 10:32:58 -0000 Date: Tue, 17 May 2005 11:32:59 +0100 From: Steve O'Hara-Smith To: Jacob Meuser Message-Id: <20050517113259.7e8c8dd3.steve@sohara.org> In-Reply-To: <20050517082137.GA1208@puff.jakemsr.gom> References: <1116257113.691.19.camel@maarten> <20050516164207.693b7f90.steve@sohara.org> <20050517030001.GE31386@puff.jakemsr.gom> <20050517091014.4423cb7f.steve@sohara.org> <20050517082137.GA1208@puff.jakemsr.gom> Organization: Steve O'Hara-Smith X-Mailer: Sylpheed version 1.0.4 (GTK+ 1.2.10; i386-pc-interix3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-multimedia@freebsd.org Subject: Re: Pinnacle PCTV Pro support in bktr X-BeenThere: freebsd-multimedia@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Multimedia discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2005 10:33:03 -0000 On Tue, 17 May 2005 01:21:38 -0700 Jacob Meuser wrote: > that's what I figured. I'll change it (using the text from the > current grab.c) and resubmit. > > thanks! Not at all - thank you. One thing before you resubmit - could you make a small change. I'm away from anwhere I can make a diff but the bit where the ioctl headers are included should be like this to support DragonFly as well as FreeBSD. #if defined __DragonFly__ #include #include #else #if __FreeBSD__ >= 502100 #include #include #else #include #include #endif #endif