From: Nathan E. Egge Date: Fri, 15 Jul 2016 20:56:03 +0000 (-0400) Subject: Add missing CONFIG_DAALA_EC declaration. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a67c0ff4d7b90d276b4acb0a48d7674f7d1e86b5;p=libvpx Add missing CONFIG_DAALA_EC declaration. Without first including ./aom_config.h in aom_dsp/prob.c the memmove function is implicitly defined and causes a compiler warning. Change-Id: I339d0389f10324a1085aba7d6492b2159a14da92 --- diff --git a/aom_dsp/prob.c b/aom_dsp/prob.c index 348592916..233ff4f71 100644 --- a/aom_dsp/prob.c +++ b/aom_dsp/prob.c @@ -9,6 +9,8 @@ * PATENTS file, you can obtain it at www.aomedia.org/license/patent. */ +#include "./aom_config.h" + #if CONFIG_DAALA_EC #include #endif