Well I'm using an old build. In the code it calls for perl58 lib
//link against your Perl Lib
#ifdef WIN32
#pragma comment(lib, "perl58.lib")
#endif
I changed it to this:
//link against your Perl Lib
#ifdef WIN32
#pragma comment(lib, "perl510.lib")
#endif
So it would be compatible with the build.
|