PDA

View Full Version : Straits fix to perlparser.cpp (quest::me, quest::echo, ect)


Striat
07-09-2007, 02:10 PM
The problem seems to be:

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:

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.

Angelox
07-19-2007, 09:10 PM
This works, I just tested it

gernblan
08-08-2007, 09:31 PM
I hope this makes it into the tree.