mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-24 02:31:03 +00:00
v4l2: Remove obsolete definition GST_V4L2_MISSING_BUFDECL
The only use was removed by 9edc0c0365
https://bugzilla.gnome.org/show_bug.cgi?id=723446
This commit is contained in:
parent
ac4df5e2c5
commit
99bf36b55d
1 changed files with 0 additions and 25 deletions
25
configure.ac
25
configure.ac
|
@ -544,31 +544,6 @@ return 0;
|
|||
])
|
||||
|
||||
if [ test x$HAVE_GST_V4L2 = xyes ]; then
|
||||
dnl check for missing v4l2_buffer declaration (see #135919)
|
||||
MISSING_DECL=0
|
||||
AC_MSG_CHECKING(struct v4l2_buffer declaration)
|
||||
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
|
||||
#include <sys/types.h>
|
||||
#ifdef __sun /* Solaris */
|
||||
#include <sys/types.h>
|
||||
#include <sys/videodev2.h>
|
||||
#elif __FreeBSD__
|
||||
#include <linux/videodev2.h>
|
||||
#else /* Linux */
|
||||
#include <linux/types.h>
|
||||
#define _LINUX_TIME_H
|
||||
#define __user
|
||||
#include <linux/videodev2.h>
|
||||
#endif
|
||||
]], [[
|
||||
struct v4l2_buffer buf;
|
||||
buf.index = 0;
|
||||
return 0;
|
||||
]])],[ AC_MSG_RESULT(yes) ],[ MISSING_DECL=1 && AC_MSG_RESULT(no) ])
|
||||
if [ test x$MISSING_DECL = x1 ]; then
|
||||
AC_DEFINE(GST_V4L2_MISSING_BUFDECL, 1, [struct v4l2_buffer missing])
|
||||
fi
|
||||
|
||||
dnl check for XOverlay libraries
|
||||
AG_GST_CHECK_XV
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue