Has anyone been able to successfully apply the VMS piping fix
as shown on Duphy's web page?
http://www.crinoid.com/perl560.htmlx
4.VMS piping fix (referenced on VMSPERL, 4/13/2000 version)
I get the following error message:
CC/DECC /Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=.obj/NoList/Define=PERL
_CORE VMS.C
_ckvmssts(SYS$DCLAST(pipe_tochild2_ast,info->in,0));
............^
%CC-E-UNDECLARED, In this statement, "thr" is not declared.
at line number 1151 in file [PERL-5_6_0]VMS.C;3
.
.
.
%CC-F-TOOMANYERR, More than 30 errors were encountered in the course of compilat
ion.
%MMS-F-ABORT, For target VMS.OBJ, CLI returned abort status: %X10B91264.
These errors are only fixed after inserting a typedef for dTHX like
the following :
************
File [PERL-5_6_0]VMS.C;4
1121 dTHX;
1122 int iss;
******
File [PERL-5_6_0]VMS.C;3
1121 int iss;
************
Is this patch missing a patch?
Kerry Clark
[EMAIL PROTECTED]