RE: any glue to sys$getrmi
[email protected] (Peter Prymmer)
| Newsgroups | perl.vmsperl |
|---|---|
| Message-ID | <OFFAE25FBF.04D9005F-ON852574AB.00779408-852574AB.007857F7@factset.com> |
Carl Friedberg <[email protected]> wrote on 08/20/2008 05:26:24 PM: > Peter and Craig, > > Thanks for the pointers. > > Working my way through, I decided to try VMS_Process, and > found similar issues. I have attached the gnu unified diff > file (you probably already have these changes, or perhaps > there's more to it than I guessed). > > VMS 8.3 Perl 5.8.8 on Alpha We found that with VMS::Process (packaged on CPAN as "1.05" but with $VMS::Process::VERSION of "1.06") we only had to edit the Process.xs file to add several PL_ prefixes to the xs macros (e.g. - ST(0) = &sv_undef; + ST(0) = &PL_sv_undef; and such). Based on a quick glance at your change it looks about the same as what we used here too. Peter Prymmer