From 25ec217cf9e73cac25e5e7609c3a47de0c99234b Mon Sep 17 00:00:00 2001 From: Vincent Penquerc'h Date: Tue, 14 Jan 2014 17:08:36 +0000 Subject: [PATCH] configure: fix (again) check for DB API: 5.4 is Not Recent Enough Maybe testing the version is clearer, but testing for < 5 is not enough, my version is 5.4 and does not yet have those new enums. If you git blame to this and have a version > 5.4 that does not either, please feel free to join along and bump the version. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 046994efb5..4d766fcab7 100644 --- a/configure.ac +++ b/configure.ac @@ -2067,7 +2067,7 @@ AG_GST_CHECK_FEATURE(DVB, [DVB Source], dvb, [ AC_CHECK_HEADER(linux/dvb/version.h, [ AC_MSG_CHECKING([for up-to-date dvb API]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[ - #if DVB_API_VERSION < 5 + #if DVB_API_VERSION < 5 || (DVB_API_VERSION == 5 && DVB_API_VERSION_MINOR <= 4) #error "Incompatible dvb API" #endif ]])], [ AC_MSG_RESULT(yes)