From: Rafaël Carré Date: Mon, 2 Jun 2008 23:32:40 +0000 (+0200) Subject: Listen to autoconf warnings: cache-id must contain _cv_ X-Git-Tag: 0.9.0-test0~414 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=ad3d28409f5b7ad44136b19332ccc609362f8025;p=vlc Listen to autoconf warnings: cache-id must contain _cv_ --- diff --git a/configure.ac b/configure.ac index 198fbb4217..49963faecb 100644 --- a/configure.ac +++ b/configure.ac @@ -2408,7 +2408,7 @@ then AC_CACHE_CHECK([for new linux/videodev2.h], - [new_linux_videodev2_h], + [ac_cv_new_linux_videodev2_h], [AC_TRY_COMPILE([ #include # ifdef VIDEODEV2_H_FILE @@ -2418,9 +2418,9 @@ then # endif ], [struct v4l2_ext_controls ctrls; ctrls.ctrl_class = V4L2_CTRL_CLASS_MPEG; ], - new_linux_videodev2_h=yes, - new_linux_videodev2_h=no)]) - if test "${new_linux_videodev2_h}" != "no"; then + ac_cv_new_linux_videodev2_h=yes, + ac_cv_new_linux_videodev2_h=no)]) + 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]) fi fi