From: Nicolas Dufresne Date: Sat, 15 Mar 2014 17:05:32 +0000 (+0100) Subject: v4l2-build: Set HAVE_GST_V4L2 if headers are present X-Git-Tag: 1.19.3~509^2~4751 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=aa248362f231b1363dd9b623394c2c6834edb078;p=platform%2Fupstream%2Fgstreamer.git v4l2-build: Set HAVE_GST_V4L2 if headers are present The name of HAVE_ need to match the USE_. Now set HAVE_GST_V4L2 if videodev2.h is found. --- diff --git a/configure.ac b/configure.ac index bf4cb95..c9d51b1 100644 --- a/configure.ac +++ b/configure.ac @@ -501,12 +501,12 @@ AG_GST_CHECK_FEATURE(OSX_VIDEO, [OSX video], osxvideosink, [ dnl *** Video 4 Linux 2 *** dnl renamed to GST_V4L2 because of some conflict with kernel headers translit(dnm, m, l) AM_CONDITIONAL(USE_GST_V4L2, true) -HAVE_VIDEODEC=no +HAVE_GST_V4L2=no 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_VIDEODEV=yes ], + AC_CHECK_HEADER(linux/videodev2.h, [ HAVE_GST_V4L2=yes ], [ - AC_CHECK_HEADER(sys/videodev2.h, [ HAVE_VIDEODEV=yes ]) + AC_CHECK_HEADER(sys/videodev2.h, [ HAVE_GST_V4L2=yes ]) ]) if test "x$HAVE_VIDEODEV" = "xno"; then AC_MSG_WARN([video4linux2 was not found])