Subject: | Missing dTHX in DB_File-1.805? |
Hi there,
building DB_File-1.805 with Perl 5.8.0 (with ithreads) on Linux
(Red Hat 7.2) using gcc, I get a compile error about a missing
"my_perl" in line 777 of DB_File.xs. Inserting dTHX; in front of
this line solves the problem:
char * buffer;
#endif
{
-> dTHX;
SV * sv = perl_get_sv(ERR_BUFF, FALSE) ;
if (sv) {
if (db_errpfx)
Maybe you want to include this in the next release?
Cheers,
Marek