Derek Buitenhuis <[email protected]> writes: > Needed for cbrtf fallback on systems which lack it. > > Signed-off-by: Derek Buitenhuis <[email protected]> > --- > libavcodec/cbrt_tablegen.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/libavcodec/cbrt_tablegen.c b/libavcodec/cbrt_tablegen.c > index e92c0f1..44c2695 100644 > --- a/libavcodec/cbrt_tablegen.c > +++ b/libavcodec/cbrt_tablegen.c > @@ -21,6 +21,7 @@ > */ > > #include <stdlib.h> > +#include "libavutil/libm.h" > #define CONFIG_HARDCODED_TABLES 0 > #include "cbrt_tablegen.h" > #include "tableprint.h" > --
WRONG. This code runs on the HOST and libm.h is for the TARGET. Revert it, and don't be in such a hurry to push things next time. -- Måns Rullgård [email protected] _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
