diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac index 28b21db..b6259ed 100644 --- a/configure.ac +++ b/configure.ac @@ -49,14 +49,15 @@ AC_ARG_ENABLE([tuberia-test], AS_HELP_STRING([--disable-tuberia-test], [Disable AS_VAR_IF([has_doxygen], [no], [AS_VAR_SET([enable_doxygen], [no])], []) AS_VAR_IF([has_valgrind], [no], [AS_VAR_SET([enable_valgrind], [no])], []) -AS_VAR_IF([has_avcodec], [no], [AS_VAR_SET([enable_examples], [no])], []) -AS_VAR_IF([has_avformat], [no], [AS_VAR_SET([enable_examples], [no])], []) -AS_VAR_IF([has_avutil], [no], [AS_VAR_SET([enable_examples], [no])], []) -AS_VAR_IF([has_swscale], [no], [AS_VAR_SET([enable_examples], [no])], []) +AS_VAR_IF([has_avcodec], [no], [AS_VAR_SET([has_ffmpeg], [no])], []) +AS_VAR_IF([has_avformat], [no], [AS_VAR_SET([has_ffmpeg], [no])], []) +AS_VAR_IF([has_avutil], [no], [AS_VAR_SET([has_ffmpeg], [no])], []) +AS_VAR_IF([has_swscale], [no], [AS_VAR_SET([has_ffmpeg], [no])], []) AM_CONDITIONAL([DOXYGEN], [test x$enable_doxygen = xyes]) AM_CONDITIONAL([VALGRIND], [test x$enable_valgrind = xyes]) AM_CONDITIONAL([EXAMPLES], [test x$enable_examples = xyes]) +AM_CONDITIONAL([HAS_FFMPEG], [test x$has_ffmpeg = xyes]) AM_CONDITIONAL([TESTS], [test x$enable_tests = xyes]) AM_CONDITIONAL([ITCTEST], [test x$enable_itc_test = xyes]) AM_CONDITIONAL([TUBERIATEST], [test x$enable_tuberia_test = xyes]) @@ -76,6 +77,7 @@ AC_MSG_NOTICE([has avcodec: $has_avcodec]) AC_MSG_NOTICE([has avformat: $has_avformat]) AC_MSG_NOTICE([has avutil: $has_avutil]) AC_MSG_NOTICE([has swscale: $has_swscale]) +AC_MSG_NOTICE([has ffmpeg: $has_ffmpeg]) AC_MSG_NOTICE([enable doxygen: $enable_doxygen]) AC_MSG_NOTICE([enable valgrind: $enable_valgrind]) AC_MSG_NOTICE([enable examples: $enable_examples]) |