I am having compilation problem with program_options.hpp.

I believe fix is simple.

Current code:

#if _MSC_VER > 1200


Proposed code:

#if defined(_MSC_VER) && (_MSC_VER>1200)


How dO I get this change incorporated into the boost source code?

regards,

Sandeep