On 10/23/07, Vitor <[EMAIL PROTECTED]> wrote: > 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?
Nope. I don't think it was intentional. Feel free to change it. > > -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 > -- Bobby Bingham Never trust atoms. Or things made of atoms. このメールは再利用されたバイトでできている _______________________________________________ FFmpeg-soc mailing list [email protected] http://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
