Re: patch@27373 VMS build fix + more long pathname stuff

2006-03-04 Thread H.Merijn Brand
On Sat, 04 Mar 2006 00:36:03 -0500, "John E. Malmberg" <[EMAIL PROTECTED]> wrote: > In vms/vms.c: > > Fix code for translating Unicode and escaped hex filenames from VMS to > UNIX to compile on the newer compiler with optimization on. > > This bug was introduced with patch 27187. > > Change c

threads and VMS

2006-03-04 Thread Abe Timmerman
Hi all, I don't know if threads is supposed to work on VMS, but this is what I get with MMK after C<< @configure -"desm" -"Dusedevel" -"Duseithreads" >>: CC/DECC/NOANSI_ALIAS /Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=.obj/ NoList/float=ieee/ieee=denorm/Define=PERL_CORE DOIO.C fp = Pe

Re: threads and VMS

2006-03-04 Thread Craig A. Berry
At 8:42 PM +0100 3/4/06, Abe Timmerman wrote: >Hi all, > >I don't know if threads is supposed to work on VMS, but this is what I get >with MMK after C<< @configure -"desm" -"Dusedevel" -"Duseithreads" >>: It should at least build cleanly. > >CC/DECC/NOANSI_ALIAS /Include=[]/Standard=Relaxed_ANSI/

Re: threads and VMS

2006-03-04 Thread John E. Malmberg
Craig A. Berry wrote: At 8:42 PM +0100 3/4/06, Abe Timmerman wrote: fp = Perl_vms_start_glob(tmpglob, io); .^ %CC-W-PTRMISMATCH, In this statement, the referenced type of the pointer value "tmpglob" is "struct sv", which is not compatible with "struct interpreter"

Re: threads and VMS

2006-03-04 Thread Craig A. Berry
At 6:29 PM -0500 3/4/06, John E. Malmberg wrote: > >--- /rsync_root/perl/doio.cMon Feb 27 06:06:55 2006 >+++ ./doio.c Sat Mar 4 18:11:15 2006 >@@ -2323,7 +2323,7 @@ >(pTHX_ SV *tmpglob, > IO *io); > >-fp = Perl_vms_start_glob(tmpglob, io); >+fp = Perl_vms_start_glob(aTHX_ tm

Re: threads and VMS

2006-03-04 Thread John E. Malmberg
Craig A. Berry wrote: At 6:29 PM -0500 3/4/06, John E. Malmberg wrote: Thanks, applied as #27376. It is not going to be enough. I found another case in vms.c that needs fixing, and then miniperl died with an access violation when I restarted the MMK build. So I just did a MMK realclean a

Re: threads and VMS

2006-03-04 Thread John E. Malmberg
John E. Malmberg wrote: Craig A. Berry wrote: At 6:29 PM -0500 3/4/06, John E. Malmberg wrote: Thanks, applied as #27376. It is not going to be enough. I found another case in vms.c that needs fixing, and then miniperl died with an access violation when I restarted the MMK build. Here