View Single Post
  #1  
Old 07-09-2007, 02:10 PM
Striat
Sarnak
 
Join Date: Aug 2006
Posts: 60
Default

The problem seems to be:

Code:
	XS_VERSION_BOOTCHECK ;
		newXS(strcpy(buf, "echo"), XS__say, file);
		newXS(strcpy(buf, "say"), XS__say, file);
		newXS(strcpy(buf, "me"), XS__say, file);
in perlparser.cpp

Change it to:

Code:
	XS_VERSION_BOOTCHECK ;
		newXS(strcpy(buf, "echo"), XS__echo, file);
		newXS(strcpy(buf, "say"), XS__say, file);
		newXS(strcpy(buf, "me"), XS__me, file);
Recompile and it should work fine for you.
Reply With Quote