I am trying to build a library using boost auto-linking, and I am getting the error

"Mixing a dll boost library with a static runtime is a really bad idea"

Error 2 fatal error C1189: #error : "Mixing a dll boost library with a static runtime is a really bad idea..." c:\bin\boost 1.34.1\boost\config\auto_link.hpp 287

This is created from the auto link header stating

#if (defined(_DLL) || defined(_RTLDLL)) && defined(BOOST_DYN_LINK)
# define BOOST_LIB_PREFIX
#elif defined(BOOST_DYN_LINK)
# error "Mixing a dll boost library with a static runtime is a really bad idea..."
#else
# define BOOST_LIB_PREFIX "lib"
#endif

I don't know what to do, I know there are like single threaded and multi threaded rtls but um, I don't know how to change it (visual studio orcas) or like, what I'd really like is for the boost library to link into mine statically so I don't have to lug around boost_cocks-vc80-mt-gd-1_34_1.dll or whatever