No f***ing way to make SDL_image programs compile in MSVC

Hi,
how do i make SDL_image and SDL_mixer programs run on MSVC 5? I add the
.lib libraries to the project (add files to project) and it displays tis
error:

Linking…
.\SDL_mixer.lib : fatal error LNK1106: invalid file or disk full: cannot
seek to 0x3c1fe019
Error executing link.exe.

demo.exe - 1 error(s), 37 warning(s)

Maybe it’s because i downloaded the MSVC 6 developer libraries?
I must say that the SDL.lib and SDLmain.lib (1.2.2) files are added
correctly and don’t appear to give any problems…
Ahhh, if i could install Linux @ school, my code compiles perfectly on it…

Thanks in advance
Joseba

Linking…
.\SDL_mixer.lib : fatal error LNK1106: invalid file or disk full: cannot
seek to 0x3c1fe019
Error executing link.exe.

demo.exe - 1 error(s), 37 warning(s)

That’s what happens when you use an unpatched MSVC++ 5.0 to link to an MSVC++
6.0 .lib file. Get the latest service pack, and it should work fine.

cu,
Nicolai