View Single Post
  #1  
Old 09-29-2005, 04:06 AM
killhand
Fire Beetle
 
Join Date: Apr 2005
Posts: 25
Default fix windows cvs compile

in embperl.h:

at around line 61 change

snprintf(buffer, 256, "if(defined(%s))......

for

_snprintf(buffer, 256, "if(defined(%s))......

or put this at the top of the file

#define snprintf _snprintf
Reply With Quote