> Hello, I am running avifile-0.7.16-20020913.tgz. When I ./configure I > get the following error: > Sdl: no (*** no SDL => no video rendering! ***) > I have the following SDL libraries: > /usr/lib/libSDL-1.2.so.0 > /usr/lib/libSDL-1.2.so.0.0.4 > /usr/lib/libSDL-1.1.so.0
Try reading the config.log file *after* you run ./configure. I had the same problem and found it was due to a missing link to a library that had no reference to SDL - IIRC it was libasound.so or something. In any case, look in the config.log until you find the section that details looking for SDL. It should have an error saying which library it couldn't find (in this case the error would be couldn't find -lasound - replace "-l" by "lib" to find the correct library). Then create a link to that file. If your problem is the same as mine, then the following will allow you to find SDL: ln -s libasound.so.1 libasound.so In any case, reading the config.log should highlight the problem. Hope that helps, Humby Out. _______________________________________________ Avifile mailing list [EMAIL PROTECTED] http://prak.org/mailman/listinfo/avifile
