Inn-2.2.1 and Perl 5.00405

Simon Williams simon at speedabv.demon.co.uk
Wed Oct 20 16:18:18 UTC 1999


The compiles of:-

lib/perl.c
innd/cc.c
innd/perl.c
nnrpd/perl.c

failed because although ERRSV was defined, PL_na was not.

I solved this by changing

#ifndef ERRSV
#define ERRSV GvSV(errgv)
#define PL_na na
#endif

to

#ifndef ERRSV
#define ERRSV GvSV(errgv)
#endif
#ifndef PL_na
#define PL_na na
#endif

in the first three files

#ifndef ERRSV
#define ERRSV GvSV(errgv)
#define PL_na na
#define PL_sv_undef sv_undef
#endif

to

#ifndef ERRSV
#define ERRSV GvSV(errgv)
#endif
#ifndef PL_na
#define PL_na na
#endif
#ifndef PL_sv_undef
# define PL_sv_undef sv_undef
#endif

in the last file.

Regards

Simon Williams (Paymaster)
Speedabove Company Limited




More information about the inn-bugs mailing list