Crypt-Passwd-XS v0.601 Perl 5 v5.12.5 i86pc-solaris-thread-multi-64
- Status
- Unknown
- From
- Chris Williams (BINGOS)
- Dist
-
Crypt-Passwd-XS v0.601
- Platform
- Perl 5 v5.12.5 i86pc-solaris-thread-multi-64
- Date
- 2022-12-10 08:40:04
- ID
- 3e4d5d30-7866-11ed-aba6-9a79f339625c
This distribution has been tested as part of the CPAN Testers
project, supporting the Perl programming language. See
http://wiki.cpantesters.org/ for more information or email
questions to cpan-testers-discuss@perl.org
--
Dear cPanel, L. L. C.,
This is a computer-generated error report created automatically by
CPANPLUS, version 0.9914. Testers personal comments may appear
at the end of this report.
Thank you for uploading your work to CPAN. However, it appears that
there were some problems testing your distribution.
TEST RESULTS:
Below is the error stack from stage 'fetch':
cp lib/Crypt/Passwd/XS.pm blib/lib/Crypt/Passwd/XS.pm
Running Mkbootstrap for XS ()
chmod 644 "XS.bs"
"/home/cpan/pit/thr/perl-5.12.5/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- XS.bs blib/arch/auto/Crypt/Passwd/XS/XS.bs 644
gcc -c -D_REENTRANT -m64 -fwrapv -fno-strict-aliasing -pipe -fstack-protector -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DPERL_USE_SAFE_PUTENV -O -DVERSION=\"0.601\" -DXS_VERSION=\"0.601\" -fPIC "-I/home/cpan/pit/thr/perl-5.12.5/lib/5.12.5/i86pc-solaris-thread-multi-64/CORE" -DARCH_IS_BIG_ENDIAN=0 sha256crypt.c
sha256crypt.c:35:3: error: unknown type name 'u_int32_t'
35 | u_int32_t H[8];
| ^~~~~~~~~
sha256crypt.c:37:3: error: unknown type name 'u_int32_t'
37 | u_int32_t total[2];
| ^~~~~~~~~
sha256crypt.c:38:3: error: unknown type name 'u_int32_t'
38 | u_int32_t buflen;
| ^~~~~~~~~
sha256crypt.c:57:14: error: unknown type name 'u_int32_t'
57 | static const u_int32_t K[64] =
| ^~~~~~~~~
sha256crypt.c: In function 'cpx_sha256_process_block':
sha256crypt.c:83:9: error: unknown type name 'u_int32_t'
83 | const u_int32_t *words = buffer;
| ^~~~~~~~~
sha256crypt.c:84:33: error: 'u_int32_t' undeclared (first use in this function); did you mean 'uint32_t'?
84 | size_t nwords = len / sizeof (u_int32_t);
| ^~~~~~~~~
| uint32_t
sha256crypt.c:84:33: note: each undeclared identifier is reported only once for each function it appears in
sha256crypt.c:85:12: error: expected ';' before 'a'
85 | u_int32_t a = ctx->H[0];
| ^~
| ;
sha256crypt.c:86:12: error: expected ';' before 'b'
86 | u_int32_t b = ctx->H[1];
| ^~
| ;
sha256crypt.c:87:12: error: expected ';' before 'c'
87 | u_int32_t c = ctx->H[2];
| ^~
| ;
sha256crypt.c:88:12: error: expected ';' before 'd'
88 | u_int32_t d = ctx->H[3];
| ^~
| ;
sha256crypt.c:89:12: error: expected ';' before 'e'
89 | u_int32_t e = ctx->H[4];
| ^~
| ;
sha256crypt.c:90:12: error: expected ';' before 'f'
90 | u_int32_t f = ctx->H[5];
| ^~
| ;
sha256crypt.c:91:12: error: expected ';' before 'g'
91 | u_int32_t g = ctx->H[6];
| ^~
| ;
sha256crypt.c:92:12: error: expected ';' before 'h'
92 | u_int32_t h = ctx->H[7];
| ^~
| ;
sha256crypt.c:105:16: error: expected ';' before 'W'
105 | u_int32_t W[64];
| ^~
| ;
sha256crypt.c:106:16: error: expected ';' before 'a_save'
106 | u_int32_t a_save = a;
| ^~~~~~~
| ;
sha256crypt.c:107:16: error: expected ';' before 'b_save'
107 | u_int32_t b_save = b;
| ^~~~~~~
| ;
sha256crypt.c:108:16: error: expected ';' before 'c_save'
108 | u_int32_t c_save = c;
| ^~~~~~~
| ;
sha256crypt.c:109:16: error: expected ';' before 'd_save'
109 | u_int32_t d_save = d;
| ^~~~~~~
| ;
sha256crypt.c:110:16: error: expected ';' before 'e_save'
110 | u_int32_t e_save = e;
| ^~~~~~~
| ;
sha256crypt.c:111:16: error: expected ';' before 'f_save'
111 | u_int32_t f_save = f;
| ^~~~~~~
| ;
sha256crypt.c:112:16: error: expected ';' before 'g_save'
112 | u_int32_t g_save = g;
| ^~~~~~~
| ;
sha256crypt.c:113:16: error: expected ';' before 'h_save'
113 | u_int32_t h_save = h;
| ^~~~~~~
| ;
sha256crypt.c:131:4: error: 'W' undeclared (first use in this function)
131 | W[t] = SWAP (*words);
| ^
sha256crypt.c:140:13: error: expected ';' before 'T1'
140 | u_int32_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t];
| ^~~
| ;
sha256crypt.c:141:13: error: expected ';' before 'T2'
141 | u_int32_t T2 = S0 (a) + Maj (a, b, c);
| ^~~
| ;
sha256crypt.c:142:4: error: 'h' undeclared (first use in this function)
142 | h = g;
| ^
sha256crypt.c:142:8: error: 'g' undeclared (first use in this function)
142 | h = g;
| ^
sha256crypt.c:143:8: error: 'f' undeclared (first use in this function)
143 | g = f;
| ^
sha256crypt.c:144:8: error: 'e' undeclared (first use in this function)
144 | f = e;
| ^
sha256crypt.c:145:8: error: 'd' undeclared (first use in this function)
145 | e = d + T1;
| ^
sha256crypt.c:145:12: error: 'T1' undeclared (first use in this function); did you mean 'R1'?
145 | e = d + T1;
| ^~
| R1
sha256crypt.c:146:8: error: 'c' undeclared (first use in this function)
146 | d = c;
| ^
sha256crypt.c:147:8: error: 'b' undeclared (first use in this function)
147 | c = b;
| ^
sha256crypt.c:148:8: error: 'a' undeclared (first use in this function)
148 | b = a;
| ^
sha256crypt.c:149:13: error: 'T2' undeclared (first use in this function)
149 | a = T1 + T2;
| ^~
sha256crypt.c:154:12: error: 'a_save' undeclared (first use in this function)
154 | a += a_save;
| ^~~~~~
sha256crypt.c:155:12: error: 'b_save' undeclared (first use in this function)
155 | b += b_save;
| ^~~~~~
sha256crypt.c:156:12: error: 'c_save' undeclared (first use in this function)
156 | c += c_save;
| ^~~~~~
sha256crypt.c:157:12: error: 'd_save' undeclared (first use in this function)
157 | d += d_save;
| ^~~~~~
sha256crypt.c:158:12: error: 'e_save' undeclared (first use in this function)
158 | e += e_save;
| ^~~~~~
sha256crypt.c:159:12: error: 'f_save' undeclared (first use in this function)
159 | f += f_save;
| ^~~~~~
sha256crypt.c:160:12: error: 'g_save' undeclared (first use in this function)
160 | g += g_save;
| ^~~~~~
sha256crypt.c:161:12: error: 'h_save' undeclared (first use in this function)
161 | h += h_save;
| ^~~~~~
sha256crypt.c: In function 'cpx_sha256_finish_ctx':
sha256crypt.c:207:3: error: unknown type name 'u_int32_t'; did you mean 'uint32_t'?
207 | u_int32_t bytes = ctx->buflen;
| ^~~~~~~~~
| uint32_t
sha256crypt.c:220:5: error: 'u_int32_t' undeclared (first use in this function); did you mean 'uint32_t'?
220 | *(u_int32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
| ^~~~~~~~~
| uint32_t
sha256crypt.c:220:16: error: expected expression before ')' token
220 | *(u_int32_t *) &ctx->buffer[bytes + pad + 4] = SWAP (ctx->total[0] << 3);
| ^
sha256crypt.c:221:16: error: expected expression before ')' token
221 | *(u_int32_t *) &ctx->buffer[bytes + pad] = SWAP ((ctx->total[1] << 3) |
| ^
sha256crypt.c:229:18: error: expected expression before ')' token
229 | ((u_int32_t *) resbuf)[i] = SWAP (ctx->H[i]);
| ^
sha256crypt.c: In function 'cpx_sha256_process_bytes':
sha256crypt.c:268:61: error: 'u_int32_t' undeclared (first use in this function); did you mean 'uint32_t'?
268 | # define UNALIGNED_P(p) (((unsigned long) p) % __alignof__ (u_int32_t) != 0)
| ^~~~~~~~~
sha256crypt.c:272:11: note: in expansion of macro 'UNALIGNED_P'
272 | if (UNALIGNED_P (buffer))
| ^~~~~~~~~~~
sha256crypt.c: In function 'cpx_sha256_crypt_r':
sha256crypt.c:330:47: error: 'u_int32_t' undeclared (first use in this function); did you mean 'uint32_t'?
330 | __attribute__ ((__aligned__ (__alignof__ (u_int32_t))));
| ^~~~~~~~~
| uint32_t
sha256crypt.c:372:28: warning: implicit declaration of function 'alloca' [-Wimplicit-function-declaration]
372 | char *tmp = (char *) alloca (key_len + __alignof__ (u_int32_t));
| ^~~~~~
sha256crypt.c:372:28: warning: incompatible implicit declaration of built-in function 'alloca'
sha256crypt.c:381:28: warning: incompatible implicit declaration of built-in function 'alloca'
381 | char *tmp = (char *) alloca (salt_len + __alignof__ (u_int32_t));
| ^~~~~~
sha256crypt.c:444:18: warning: incompatible implicit declaration of built-in function 'alloca'
444 | cp = p_bytes = alloca (key_len);
| ^~~~~~
*** Error code 1
make: Fatal error: Command failed for target `sha256crypt.o'
PREREQUISITES:
Here is a list of prerequisites you specified and versions we
managed to load:
Module Name Have Want
ExtUtils::MakeMaker 7.64 0
Test::More 1.302191 0
Perl module toolchain versions installed:
Module Name Have
CPANPLUS 0.9914
CPANPLUS::Dist::Build 0.90
Cwd 3.75
ExtUtils::CBuilder 0.280236
ExtUtils::Command 7.64
ExtUtils::Install 2.20
ExtUtils::MakeMaker 7.64
ExtUtils::Manifest 1.73
ExtUtils::ParseXS 3.44
File::Spec 3.75
Module::Build 0.4231
Pod::Parser 1.37
Pod::Simple 3.14
Test2 1.302191
Test::Harness 3.44
Test::More 1.302191
version 0.9929
******************************** NOTE ********************************
The comments above are created mechanically, possibly without manual
checking by the sender. As there are many people performing automatic
tests on each upload to CPAN, it is likely that you will receive
identical messages about the same problem.
If you believe that the message is mistaken, please reply to the first
one with correction and/or additional informations, and do not take
it personally. We appreciate your patience. :)
**********************************************************************
Additional comments:
This report was machine-generated by CPANPLUS::Dist::YACSmoke 1.08.
Powered by minismokebox version 0.68
CPANPLUS is prefering Build.PL
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
LANG = en_GB.UTF-8
NONINTERACTIVE_TESTING = 1
PATH = /usr/bin:/usr/sbin:/sbin:/opt/ooce/bin:/usr/gnu/bin
PERL5LIB = /home/cpan/pit/jail/Btppvrrl3P/lib/perl5:/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/lib:/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/arch
PERL5_CPANPLUS_IS_RUNNING = 27285
PERL5_CPANPLUS_IS_VERSION = 0.9914
PERL5_MINISMOKEBOX = 0.68
PERL5_YACSMOKE_BASE = /home/cpan/pit/thr/conf/perl-5.12.5
PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
PERL_LOCAL_LIB_ROOT = /home/cpan/pit/jail/Btppvrrl3P
PERL_MB_OPT = --install_base "/home/cpan/pit/jail/Btppvrrl3P"
PERL_MM_OPT = INSTALL_BASE=/home/cpan/pit/jail/Btppvrrl3P
PERL_MM_USE_DEFAULT = 1
SHELL = /bin/bash
TERM = screen.xterm-256color
Perl special variables (and OS-specific diagnostics, for MSWin32):
Perl: $^X = /home/cpan/pit/thr/perl-5.12.5/bin/perl
UID: $< = 101
EUID: $> = 101
GID: $( = 101 101
EGID: $) = 101 101
-------------------------------
--
Summary of my perl5 (revision 5 version 12 subversion 5) configuration:
Platform:
osname=solaris, osvers=2.11, archname=i86pc-solaris-thread-multi-64
uname='sunos ouzel 5.11 omnios-r151034-0d278a0cc5 i86pc i386 i86pc '
config_args='-des -Dprefix=/home/cpan/pit/thr/perl-5.12.5 -Dusethreads -Duse64bitall -Dcc=gcc'
hint=recommended, useposix=true, d_sigaction=define
useithreads=define, usemultiplicity=define
useperlio=define, d_sfio=undef, uselargefiles=define, usesocks=undef
use64bitint=define, use64bitall=define, uselongdouble=undef
usemymalloc=n, bincompat5005=undef
Compiler:
cc='gcc', ccflags ='-D_REENTRANT -m64 -fwrapv -fno-strict-aliasing -pipe -fstack-protector -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DPERL_USE_SAFE_PUTENV',
optimize='-O',
cppflags='-D_REENTRANT -m64 -fwrapv -fno-strict-aliasing -pipe -fstack-protector'
ccversion='', gccversion='9.3.0', gccosandvers=''
intsize=4, longsize=8, ptrsize=8, doublesize=8, byteorder=12345678
d_longlong=define, longlongsize=8, d_longdbl=define, longdblsize=16
ivtype='long', ivsize=8, nvtype='double', nvsize=8, Off_t='off_t', lseeksize=8
alignbytes=8, prototype=define
Linker and Libraries:
ld='gcc', ldflags =' -m64 -fstack-protector -L/usr/gnu/lib '
libpth=/usr/gnu/lib /usr/lib /usr/ccs/lib
libs=-lsocket -lnsl -ldl -lm -lpthread -lc
perllibs=-lsocket -lnsl -ldl -lm -lpthread -lc
libc=/lib/libc.so, so=so, useshrplib=true, libperl=libperl.so
gnulibc_version=''
Dynamic Linking:
dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef, ccdlflags=' -R /home/cpan/pit/thr/perl-5.12.5/lib/5.12.5/i86pc-solaris-thread-multi-64/CORE'
cccdlflags='-fPIC', lddlflags=' -shared -m64 -L/usr/gnu/lib -fstack-protector'
Characteristics of this binary (from libperl):
Compile-time options: MULTIPLICITY PERL_DONT_CREATE_GVSV
PERL_IMPLICIT_CONTEXT PERL_MALLOC_WRAP
PERL_USE_SAFE_PUTENV USE_64_BIT_ALL USE_64_BIT_INT
USE_ITHREADS USE_LARGE_FILES USE_PERLIO USE_PERL_ATOF
USE_REENTRANT_API
Locally applied patches:
Devel::PatchPerl 2.00
Built under solaris
Compiled at Aug 19 2020 23:02:15
%ENV:
PERL5LIB="/home/cpan/pit/jail/Btppvrrl3P/lib/perl5:/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/lib:/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/arch"
PERL5_CPANPLUS_IS_RUNNING="27285"
PERL5_CPANPLUS_IS_VERSION="0.9914"
PERL5_MINISMOKEBOX="0.68"
PERL5_YACSMOKE_BASE="/home/cpan/pit/thr/conf/perl-5.12.5"
PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
PERL_LOCAL_LIB_ROOT="/home/cpan/pit/jail/Btppvrrl3P"
PERL_MB_OPT="--install_base "/home/cpan/pit/jail/Btppvrrl3P""
PERL_MM_OPT="INSTALL_BASE=/home/cpan/pit/jail/Btppvrrl3P"
PERL_MM_USE_DEFAULT="1"
@INC:
/home/cpan/pit/jail/Btppvrrl3P/lib/perl5/5.12.5/i86pc-solaris-thread-multi-64
/home/cpan/pit/jail/Btppvrrl3P/lib/perl5/5.12.5
/home/cpan/pit/jail/Btppvrrl3P/lib/perl5/i86pc-solaris-thread-multi-64
/home/cpan/pit/jail/Btppvrrl3P/lib/perl5
/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/lib
/home/cpan/pit/thr/conf/perl-5.12.5/.cpanplus/5.12.5/build/pdDb6pWYR3/Module-Build-Tiny-0.039/blib/arch
/home/cpan/pit/thr/perl-5.12.5/lib/site_perl/5.12.5/i86pc-solaris-thread-multi-64
/home/cpan/pit/thr/perl-5.12.5/lib/site_perl/5.12.5
/home/cpan/pit/thr/perl-5.12.5/lib/5.12.5/i86pc-solaris-thread-multi-64
/home/cpan/pit/thr/perl-5.12.5/lib/5.12.5
.