Front page | perl.perl5.porters |
Postings from November 2000
[ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1(UNINSTALLED)
Thread Next
From:
Peter Prymmer
Date:
November 29, 2000 15:14
Subject:
[ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1(UNINSTALLED)
Message ID:
Pine.OSF.4.10.10011291515570.328738-100000@aspara.forte.com
This is a build failure report for perl from pvhp@vale.forte.com,
generated with the help of perlbug 1.33 running under perl v5.7.0.
-----------------------------------------------------------------
[Please enter your report here]
On the initial run of `mms test` I saw:
[.lib]filter-util.......FAILED on test 2
[.lib]net-hostent.......FAILED on test 4
I think that Charles Lane has a patch for the former and here is
something for the latter (warning: not tested on any other platform).
Interestingly enough, if I run @perl_setup (with the prefix set to
the build directory hence my resulting PERL_ROOT logical points to
an OK PERL_ROOT:[LIB] directory) I get all tests including lib/filter-util.t
to pass after application of this patch (further evidence that Charles Lane
was correct after all about the double quote issue):
--- t/lib/net-hostent.t.orig Wed Nov 29 06:50:56 2000
+++ t/lib/net-hostent.t Wed Nov 29 15:02:51 2000
@@ -30,12 +30,14 @@
# return the name of the machine instead of "localhost" when resolving
# 127.0.0.1 or even "localhost"
+# VMS returns "LOCALHOST" under tcp/ip services V4.1 ECO 2, possibly others
+
if ($^O eq 'MSWin32') {
print "ok $_ # skipped on win32\n" for (4,5);
} else {
- print "not " if $h->name ne "localhost";
- print "ok 4\n";
+ print "not " if $h->name !~ /localhost/i;
+ print "ok 4 # ",$h->name,"\n";
- print "not " if $i->name ne "localhost";
- print "ok 5\n";
+ print "not " if $i->name !~ /localhost/i;
+ print "ok 5 # ",$i->name,"\n";
}
End of Patch.
Peter Prymmer
[Please do not change anything below this line]
-----------------------------------------------------------------
---
Flags:
category=install
severity=none
---
Site configuration information for perl v5.7.0:
Configured by pvhp at Wed Nov 29 13:52:31 UTC-8:00 2000.
Summary of my perl5 (revision 5.0 version 7 subversion undef) configuration:
Platform:
osname=VMS, osvers=V7.1, archname=VMS_AXP
uname='VMS vale V7.1 AlphaServer 4100 5/300 2MB'
config_args='-Dusedevel -des'
hint=none, useposix=false, d_sigaction=define
usethreads=undef use5005threads=undef useithreads=undef usemultiplicity=undef
useperlio=undef d_sfio=undef uselargefiles=undef usesocks=undef
use64bitint=undef use64bitall=undef uselongdouble=undef
Compiler:
cc='CC/DECC', ccflags ='/Include=[]/Standard=Relaxed_ANSI/Prefix=All/Obj=.obj/NoList',
optimize='',
cppflags='undef'
ccversion='60090001', gccversion='', gccosandvers='undef'
intsize=4, longsize=4, ptrsize=4, doublesize=8, byteorder=1234
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=4, nvtype='double', nvsize=8, Off_t='int', lseeksize=4
alignbytes=8, usemymalloc=N, prototype=define
Linker and Libraries:
ld='Link', ldflags ='/NoTrace/NoMap'
libpth=/sys$share /sys$library
libs=
perllibs=
libc=(DECCRTL), so=exe, useshrplib=undef, libperl=undef
Dynamic Linking:
dlsrc=dl_vms.c, dlext=exe, d_dlsymun=undef, ccdlflags=''
cccdlflags='', lddlflags='/Share'
Locally applied patches:
DEVEL7928
---
@INC for perl v5.7.0:
lib/VMS_AXP
lib
perl_root:[lib.VMS_AXP.5_7_0]
perl_root:[lib]
perl_root:[lib.site_perl.VMS_AXP]
perl_root:[lib.site_perl]
/perl_root/lib/site_perl
.
---
Environment for perl v5.7.0:
HOME=user:[pvhp]
LANG (unset)
LANGUAGE (unset)
LD_LIBRARY_PATH (unset)
LOGDIR (unset)
PERLSHR=PERL_ROOT:[000000]PERLSHR.EXE
PERL_BADLANG (unset)
PERL_ROOT=DKB100:[PERL.]
SHELL (unset)
Thread Next
-
[ID 20001129.007] Not OK: perl v5.7.0 +DEVEL7928 on VMS_AXP V7.1(UNINSTALLED)
by Peter Prymmer