If you do a general search for
perl510.lib and then change both instances to
perl512.lib then you should have no trouble using Perl 5.12.xx.xxxx (assuming that you have set your 'lib' and 'include' references correctly.)
Specifically:
<embperl.cpp>
Code:
#ifdef _WINDOWS
#if _MSC_VER >= 1600 // for V100+ toolset
#pragma comment(lib, "perl514.lib")
#else
#pragma comment(lib, "perl512.lib")
#endif
#endif
<EQWParser.cpp>
Code:
#ifdef _WINDOWS
#if _MSC_VER >= 1600 // for V100+ toolset
#pragma comment(lib, "perl514.lib")
#else
#pragma comment(lib, "perl512.lib")
#endif
#endif
Be sure to save these changes or you will have to make them again when you recompile future revisions.
U