Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 May 2005 11:32:59 +0100
From:      Steve O'Hara-Smith <steve@sohara.org>
To:        Jacob Meuser <jakemsr@jakemsr.com>
Cc:        freebsd-multimedia@freebsd.org
Subject:   Re: Pinnacle PCTV Pro support in bktr
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>

next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 17 May 2005 01:21:38 -0700
Jacob Meuser <jakemsr@jakemsr.com> 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 <dev/video/meteor/ioctl_meteor.h>
#include <dev/video/bktr/ioctl_bt848.h>
#else
#if __FreeBSD__ >= 502100
#include <dev/bktr/ioctl_meteor.h>
#include <dev/bktr/ioctl_bt848.h>
#else
#include <machine/ioctl_meteor.h>
#include <machine/ioctl_bt848.h>
#endif
#endif



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20050517113259.7e8c8dd3.steve>