diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-08-23 10:32:14 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2011-08-23 10:32:14 +0200 |
commit | 8d5f2c707863eeb49526cb4b889bc690ea280aa6 (patch) | |
tree | 39c099b7509281c2617ea4a1df6d88106f763669 | |
parent | c24d052bb7223efce1885e1577b0f9daeb3a3e7c (diff) |
configure: Add AC_MSG_CHECKING() to the VP8E_SET_TUNING presence check
-rw-r--r-- | configure.ac | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8cb02a91b..d5674df77 100644 --- a/configure.ac +++ b/configure.ac @@ -1693,6 +1693,7 @@ AG_GST_CHECK_FEATURE(VP8, [VP8 decoder], vp8, [ AC_DEFINE(HAVE_VP8_ENCODER, 1, [Defined if the VP8 encoder is available]) VPX_LIBS="-lvpx" + AC_MSG_CHECKING([for VP8E_SET_TUNING presence]) AC_TRY_COMPILE([ #include <vpx/vpx_encoder.h> #include <vpx/vp8cx.h> @@ -1701,7 +1702,9 @@ int foo=VP8E_SET_TUNING; return 0; ], [ AC_DEFINE(HAVE_VP8ENC_TUNING, 1, [Defined if the VP8 encoder has tuning API]) + AC_MSG_RESULT(yes) ], [ + AC_MSG_RESULT(no) ]) ]) AC_CHECK_LIB(vpx, vpx_codec_vp8_dx_algo, [ |