Hi,

I am trying to use boost signals. I am using Visual Studio 2005 with boost and qt. I had to do this workaround to avoid the signals conflict:

#ifdef signals
#error "signalslib.hpp must be included before any qt header"
#endif

#include <boost/signal.hpp>
namespace boost
{
   namespace signalslib = signals;
}

I am getting this error
INK : fatal error LNK1104: cannot open file 'libboost_signals-vc80-mt-1_33_1.lib'

Thanks,
Sam