View Single Post
  #6  
Old 01-09-2013, 10:11 PM
NikonRZ
Sarnak
 
Join Date: Sep 2008
Location: Atlanta, GA
Posts: 33
Default

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.
Reply With Quote