Hi I have a small project with boost 1.33 + libtorrent 0.10 + wxwidgets 2.7.0 + msvc 8.0 (2005) express. in project config -> linker -> input -> add. dep. I have (among other libs): libboost_filesystem-vc80-mt-gd.lib libboost_thread-vc80-mt-gd.lib libboost_date_time-vc80-mt-gd.lib and linker says: tracker_manager.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall boost::gregorian::greg_month::greg_month(unsigned short)" (__imp_??0greg_month@gregorian@boost@@QAE@G@Z) web_peer_connection.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall boost::gregorian::greg_month::greg_month(unsigned short)" (__imp_??0greg_month@gregorian@boost@@QAE@G@Z) storage.obj : error LNK2001: unresolved external symbol "__declspec(dllimport) public: __thiscall boost::gregorian::greg_month::greg_month(unsigned short)" (__imp_??0greg_month@gregorian@boost@@QAE@G@Z) Now, when I change libboost_date_time-vc80-mt-gd.lib to boost_date_time-vc80-mt-gd.lib then it links fine and runs fine, excpet that .exe it needs boost_date_time-vc80-mt-gd-1_33_1.dll in a running directory. Why isnt gregorian stuff in boost_date_time*.lib -s ?