Commit ad3d2840 authored by Rafaël Carré's avatar Rafaël Carré

Listen to autoconf warnings: cache-id must contain _cv_

parent 267c2d9c
...@@ -2408,7 +2408,7 @@ then ...@@ -2408,7 +2408,7 @@ then
AC_CACHE_CHECK([for new linux/videodev2.h], AC_CACHE_CHECK([for new linux/videodev2.h],
[new_linux_videodev2_h], [ac_cv_new_linux_videodev2_h],
[AC_TRY_COMPILE([ [AC_TRY_COMPILE([
#include <sys/types.h> #include <sys/types.h>
# ifdef VIDEODEV2_H_FILE # ifdef VIDEODEV2_H_FILE
...@@ -2418,9 +2418,9 @@ then ...@@ -2418,9 +2418,9 @@ then
# endif # endif
], ],
[struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; ], [struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; ],
new_linux_videodev2_h=yes, ac_cv_new_linux_videodev2_h=yes,
new_linux_videodev2_h=no)]) ac_cv_new_linux_videodev2_h=no)])
if test "${new_linux_videodev2_h}" != "no"; then if test "${ac_cv_new_linux_videodev2_h}" != "no"; then
AC_DEFINE(HAVE_NEW_LINUX_VIDEODEV2_H, 1, [Define if new linux/videodev2.h present]) AC_DEFINE(HAVE_NEW_LINUX_VIDEODEV2_H, 1, [Define if new linux/videodev2.h present])
fi fi
fi fi
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment