diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-13 00:54:19 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2010-03-13 00:54:19 +0000 |
commit | b243c8ddeb10a19f65ac46a07f8ae2a414fa3e8d (patch) | |
tree | 63775906a51fcbc39438f6d5401130e6b4d46cdb | |
parent | 8313b038cb6668c6cac06781e20da61f87a25360 (diff) | |
download | xine-lib-b243c8ddeb10a19f65ac46a07f8ae2a414fa3e8d.tar.gz xine-lib-b243c8ddeb10a19f65ac46a07f8ae2a414fa3e8d.tar.bz2 |
Fix V4L2 check.
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -1,6 +1,7 @@ xine-lib (1.1.19) 2010-??-?? * Handle odd widths properly (for ffmpeg-decoded video). * Make buildable with current (external) libdvdnav & libdvdread. + * Fix V4L2 check. xine-lib (1.1.18.1) 2010-03-06 * Oops. compat.c (for DXR3 support) was omitted. diff --git a/configure.ac b/configure.ac index 68f811d1b..3c7830113 100644 --- a/configure.ac +++ b/configure.ac @@ -698,7 +698,7 @@ dnl ---------------------------------------------- AC_ARG_ENABLE([libv4l], AS_HELP_STRING([--disable-libv4l], [do not build with libv4l support])) -if test "x$have_v4l2$" = xyes && test "x$enable_libv4l" != xno; then +if test "x$have_v4l2" = xyes && test "x$enable_libv4l" != xno; then have_libv4l=no PKG_CHECK_MODULES([V4L2], [libv4l2], [have_libv4l=yes |