On Sat, 2004-11-27 at 13:42 +0000, javier bellido wrote: Hi Javier,
> All the libs are in /usr/lib I'm guessing that there are older versions in /usr/local/lib that the configuration process picked up. > cc -shared -L/usr/local/lib -o blib/arch/auto/SDL_perl/SDL_perl.so > src/SDL_perl.o -L/usr/lib -lSDL -lpthread -lpng -lSDL -lSDL_ttf > -lSDL_net -lSDL_image -lSDL_gfx -ljpeg -lsmpeg -lSDL_mixer What happens if you run this command instead? $ cc -shared -o blib/arch/auto/SDL_perl/SDL_perl.so src/SDL_perl.o -L/usr/lib -lSDL -lpthread -lpng -lSDL -lSDL_ttf -lSDL_net -lSDL_image -lSDL_gfx -ljpeg -lsmpeg -lSDL_mixer (all on one line) If that links, you should be able to run ./Build again and everything will work. -- c