diff options
author | Lars Op den Kamp <lars@opdenkamp.eu> | 2012-10-03 01:43:28 +0200 |
---|---|---|
committer | Lars Op den Kamp <lars@opdenkamp.eu> | 2012-10-09 00:33:39 +0200 |
commit | b45b9a47c13719ad0b57f2776a1789e558d63325 (patch) | |
tree | 85e7c834595f5587047ef7e9530e84964b3c9999 /configure.in | |
parent | 2a1bdf74a770a9b571245540803671ca748ca8f8 (diff) |
[cec] bump to libCEC 2.0.0. only minor changes, but the API was cleaned up, and is not compatible with the previous version anymore
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.in b/configure.in index 95171f8cd9..75edc531a1 100644 --- a/configure.in +++ b/configure.in @@ -1456,9 +1456,9 @@ if test "x$use_libcec" != "xno"; then # libcec is dyloaded, so we need to check for its headers and link any depends. if test "x$use_libcec" != "xno"; then if test "x$use_libcec" != "xauto"; then - PKG_CHECK_MODULES([CEC],[libcec >= 1.8.0],,[use_libcec="no";AC_MSG_ERROR($libcec_disabled)]) + PKG_CHECK_MODULES([CEC],[libcec >= 2.0.0],,[use_libcec="no";AC_MSG_ERROR($libcec_disabled)]) else - PKG_CHECK_MODULES([CEC],[libcec >= 1.8.0],,[use_libcec="no";AC_MSG_RESULT($libcec_disabled)]) + PKG_CHECK_MODULES([CEC],[libcec >= 2.0.0],,[use_libcec="no";AC_MSG_RESULT($libcec_disabled)]) fi if test "x$use_libcec" != "xno"; then |