PDA

View Full Version : 6-11-04 code Perl compile error fix


Dspirit
06-10-2004, 06:30 PM
Embperl.cpp

Line 18

#include "embxs.h"

Change to
//#include "embxs.h"

Line 32

newXS("quest::boot_qc", boot_qc, file);

Change to
//newXS("quest::boot_qc", boot_qc, file);


Embparser.cpp line 407

"&boot_qc;"

Change to
//"&boot_qc;"


This is a temp fix im sure one of the dev's will post a better fix soon.

Derision
06-10-2004, 10:13 PM
You need to add the file zone/embxs.cpp to your Solution/Project or whatever VS NET calls it. I just compiled the source under Linux and had to add embxs.cpp to my makefile.perl

Scorpious2k
06-10-2004, 10:17 PM
You need to add the file zone/embxs.cpp to your Solution/Project or whatever VS NET calls it. I just compiled the source under Linux and had to add embxs.cpp file to my makefile.perl

That's absolutely correct! This is something new that will let us expand the perl capabilities.