Hi Jeremy Mordkoff wrote: > After applying the diffs, I got a top level Makefile with this: > > > > ifeq ($(CONFIG_SWSCALER),yes) > > $(MAKE) -C libswscale all > > ifeq ($(CONFIG_AVFILTER),yes) > > $(MAKE) -C libavfilter all > > endif > > endif > > > > and it would not link because it never built libavfilter. > > > > I changed it to > > ifeq ($(CONFIG_SWSCALER),yes) > > $(MAKE) -C libswscale all > > endif > > ifeq ($(CONFIG_AVFILTER),yes) > > $(MAKE) -C libavfilter all > > endif > > > > and it builds and runs
Thanks for reporting it. It's the kind of thing that goes unnoticed after you built it once... (I'll fix it tomorrow) > Was this dependency on swscaler intentional? Probably not. Bobby? -Vitor PS: do not hesitate in reporting any other bugs you found... _______________________________________________ FFmpeg-soc mailing list [email protected] http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
