v4l2: Add support for detecting the presence of V4L2 support on OpenBSD

https://bugzilla.gnome.org/review?bug=742503
This commit is contained in:
Brad Smith 2015-01-07 21:52:17 -05:00 committed by Nicolas Dufresne
parent ff5b235c32
commit 133bad7fee

View file

@ -506,7 +506,10 @@ AG_GST_CHECK_FEATURE(GST_V4L2, [Video 4 Linux 2], video4linux2, [
AC_MSG_CHECKING([Checking for video4linux2 header ...])
AC_CHECK_HEADER(linux/videodev2.h, [ HAVE_GST_V4L2=yes ],
[
AC_CHECK_HEADER(sys/videodev2.h, [ HAVE_GST_V4L2=yes ])
AC_CHECK_HEADER(sys/videodev2.h, [ HAVE_GST_V4L2=yes ],
[
AC_CHECK_HEADER(sys/videoio.h, [ HAVE_GST_V4L2=yes ])
])
])
if test "x$HAVE_VIDEODEV" = "xno"; then
AC_MSG_WARN([video4linux2 was not found])