View Single Post
  #7  
Old 06-26-2012, 12:19 AM
Akkadius's Avatar
Akkadius
Administrator
 
Join Date: Feb 2009
Location: MN
Posts: 2,071
Default

Quote:
Originally Posted by gibroni View Post
now i get a zone compile error with build 2155. 5 build, 1 fail. gives me

3>LINK : fatal error LNK1104: cannot open file 'perl510.lib'
3>
3>Build FAILED.
Rev 2152: If you change the pragma comment back to perl514.lib in embperl.cpp you will be golden. I don't know why it was changed like that, it broke mine too and I had to change it back.

Code:
	Modify	/trunk/EQEmuServer/zone/embperl.cpp	diff
...			
28	28		//#pragma comment(lib, "perl56.lib")
29	29		#ifdef _WINDOWS
30	30		#if _MSC_VER >= 1600 // for V100+ toolset
31		-	#pragma comment(lib, "perl514.lib")
31	+	#pragma comment(lib, "perl510.lib")
32	32		#else
33	33		#pragma comment(lib, "perl510.lib")
34	34		#endif
Reply With Quote