From a41ac3f33e72c4d7a6e84e76809ebbbf1ff65cb8 Mon Sep 17 00:00:00 2001 From: stan Date: Tue, 8 Feb 2011 14:31:53 +0000 Subject: [PATCH] Remove warning for libavcore as not present in older versions of ffmpeg git-svn-id: http://svn.zoneminder.com/svn/zm/trunk@3290 e3e1d417-86f3-4887-817a-d78f3d33393f --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8089cb29a..53e8ba99d 100644 --- a/configure.ac +++ b/configure.ac @@ -272,7 +272,8 @@ fi AC_CHECK_LIB(pcre,pcre_compile,,AC_MSG_WARN(libpcre.a may be required for remote/network camera support)) AC_CHECK_LIB(x264,x264_predict_16x16_init) AC_CHECK_LIB(avutil,av_malloc,,AC_MSG_WARN(libavutil.a may be required for MPEG streaming)) -AC_CHECK_LIB(avcore,av_image_copy,,AC_MSG_WARN(libavcore.a may be required for MPEG streaming)) +# Don't bother to warn about this one +AC_CHECK_LIB(avcore,av_image_copy,,)) AC_CHECK_LIB(avcodec,avcodec_init,,AC_MSG_WARN(libavcodec.a is required for MPEG streaming)) AC_CHECK_LIB(avformat,av_new_stream,,AC_MSG_WARN(libavformat.a is required for MPEG streaming)) AC_CHECK_LIB(avdevice,avdevice_register_all,,AC_MSG_WARN(libavdevice.a may be required for MPEG streaming))