[opensuse-factory] linux/videodev.h package
Does anyone know what package in factory has the linux/videodev.h file? A package I am trying to build needs it as a dependency. In 11.3 and 11.4 it is in kernel-devel and linux-glibc-devel, but it doesn't seem to be in either of those in factory. -Todd -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-factory+help@opensuse.org
On 08/04/2011 09:05 AM, todd rme wrote:
Does anyone know what package in factory has the linux/videodev.h file? A package I am trying to build needs it as a dependency. In 11.3 and 11.4 it is in kernel-devel and linux-glibc-devel, but it doesn't seem to be in either of those in factory.
libv4l package now installs a replacement libv4l1-videodev.h file. You need to depend on version >= 0.8.4 Regards. -- İsmail Dönmez - openSUSE Booster SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg) Maxfeldstr. 5, 90409 Nürnberg, Germany -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-factory+help@opensuse.org
On Thu, Aug 4, 2011 at 9:41 AM, Ismail Donmez <idoenmez@suse.de> wrote:
On 08/04/2011 09:05 AM, todd rme wrote:
Does anyone know what package in factory has the linux/videodev.h file? A package I am trying to build needs it as a dependency. In 11.3 and 11.4 it is in kernel-devel and linux-glibc-devel, but it doesn't seem to be in either of those in factory.
libv4l package now installs a replacement libv4l1-videodev.h file. You need to depend on version >= 0.8.4
Regards.
I am not sure I understand. The package already has lib4l-devel as a buildrequires. However, it has a compilation error because it cannot find linux/videodev.h. The package I am trying to build is here: https://build.opensuse.org/package/show?package=unicap&project=home%3ATheBlackCat The error I am getting is: v4l.c:52:28: fatal error: linux/videodev.h: No such file or directory compilation terminated. If libv4l1-videodev.h isn't detected, might it be possible to add a symlink for linux/videodev.h pointing to libv4l1-videodev.h? -Todd -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-factory+help@opensuse.org
Hi; On 08/04/2011 10:01 AM, todd rme wrote:
On Thu, Aug 4, 2011 at 9:41 AM, Ismail Donmez<idoenmez@suse.de> wrote:
On 08/04/2011 09:05 AM, todd rme wrote:
Does anyone know what package in factory has the linux/videodev.h file? A package I am trying to build needs it as a dependency. In 11.3 and 11.4 it is in kernel-devel and linux-glibc-devel, but it doesn't seem to be in either of those in factory.
libv4l package now installs a replacement libv4l1-videodev.h file. You need to depend on version>= 0.8.4
Regards.
I am not sure I understand. The package already has lib4l-devel as a buildrequires. However, it has a compilation error because it cannot find linux/videodev.h.
The package I am trying to build is here: https://build.opensuse.org/package/show?package=unicap&project=home%3ATheBlackCat
The error I am getting is: v4l.c:52:28: fatal error: linux/videodev.h: No such file or directory compilation terminated.
Add a patch to replace #include <linux/videodev.h> with; #include <libv4l1-videodev.h> and in your spec file; %if 0%{?suse_version} >= 1210 BuildRequires: libv4l-devel >= 0.8.4 %endif
If libv4l1-videodev.h isn't detected, might it be possible to add a symlink for linux/videodev.h pointing to libv4l1-videodev.h?
That wouldn't be a clean solution :/ Regards. -- İsmail Dönmez - openSUSE Booster SUSE LINUX Products GmbH, GF: Markus Rex, HRB 16746 (AG Nürnberg) Maxfeldstr. 5, 90409 Nürnberg, Germany -- To unsubscribe, e-mail: opensuse-factory+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-factory+help@opensuse.org
participants (2)
-
Ismail Donmez
-
todd rme