Problems with SDL and VC++

I want to compile my source code using “Multithreaded debugging”. But then I get an error message:

sdlmain.lib(SDL_main.obj) : error LNK2001: Nichtaufgeloestes externes Symbol __imp__setbuf
sdlmain.lib(SDL_main.obj) : error LNK2001: Nichtaufgeloestes externes Symbol __imp__freopen
Debug/tut5.exe : fatal error LNK1120: 2 unaufgeloeste externe Verweise

I do not want to compile using “Multithreaded DLL debugging” because then I get in trouble with other libraries, that I included in my Project.

Any suggestions?

I want to compile my source code using “Multithreaded
debugging”. But then I get an error message: […]

The SDL.DLL requires the “Multithreaded DLL” runtime library, not
the “debugging” version and also not the “static” version. If you
want to use another runtime library (such as “Multihreaded
debugging”) you should recompile SDL yourself.From: “Ronald Sowa”:

Matthijs Hollemans
www.allyoursoftware.com