Crypt-Passwd-XS v0.601 Perl 5 v5.37.6 i86pc-solaris-thread-multi-64
- Status
- Unknown
- From
- Carlos Guevara
- Dist
-
Crypt-Passwd-XS v0.601
- Platform
- Perl 5 v5.37.6 i86pc-solaris-thread-multi-64
- Date
- 2022-11-10 14:53:51
- ID
- 7d5fe608-6107-11ed-b125-bb206793d8fb
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 report for Crypt-Passwd-XS-0.601
on perl 5.37.6, created by CPAN-Reporter-1.2018.
Thank you for uploading your work to CPAN. However, attempting to
test your distribution gave an inconclusive result.
This could be because your distribution had an error during the make/build
stage, did not define tests, tests could not be found, because your tests were
interrupted before they finished, or because the results of the tests could not
be parsed. You may wish to consult the CPAN Testers Wiki:
http://wiki.cpantesters.org/wiki/CPANAuthorNotes
Sections of this report:
* Tester comments
* Program output
* Prerequisites
* Environment and other context
------------------------------
TESTER COMMENTS
------------------------------
Additional comments from tester:
this report is from an automated smoke testing program
and was not reviewed by a human for accuracy
------------------------------
PROGRAM OUTPUT
------------------------------
Output from '/usr/bin/make':
cp lib/Crypt/Passwd/XS.pm blib/lib/Crypt/Passwd/XS.pm
Running Mkbootstrap for XS ()
chmod 644 "XS.bs"
"/export/home/cpan/bin/perl-blead/bin/perl5.37.6" -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-strong -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O -DVERSION=\"0.601\" -DXS_VERSION=\"0.601\" -fPIC "-I/export/home/cpan/bin/perl-blead/lib/5.37.6/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'
Current working directory /export/home/cpan/.cpan/build/Crypt-Passwd-XS-0.601-0
------------------------------
PREREQUISITES
------------------------------
Prerequisite modules loaded:
requires:
Module Need Have
------------------- ---- --------
Test::More 0 1.302191
build_requires:
Module Need Have
------------------- ---- --------
ExtUtils::MakeMaker 0 7.64
configure_requires:
Module Need Have
------------------- ---- --------
ExtUtils::MakeMaker 0 7.64
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
AUTOMATED_TESTING = 1
DATE_MANIP_TEST_DM5 = 1
LANG = en_US.UTF-8
LC_ALL = C
NONINTERACTIVE_TESTING = 1
NO_NETWORK_TESTING = 1
PATH = /export/home/cpan/bin/perl-blead/bin:/usr/bin:/usr/sbin:/sbin:/opt/ooce/bin:/usr/gnu/bin
PERL = /export/home/cpan/bin/perl-blead/bin/perl5.37.6
PERL5LIB =
PERL5OPT =
PERL5_CPANPLUS_IS_RUNNING = 24767
PERL5_CPAN_IS_RUNNING = 24767
PERL_MM_USE_DEFAULT = 1
PERL_USE_UNSAFE_INC = 1
PERL_VERSION = blead
SHELL = /bin/bash
TERM = screen
Perl special variables (and OS-specific diagnostics, for MSWin32):
$^X = /export/home/cpan/bin/perl-blead/bin/perl5.37.6
$UID/$EUID = 101 / 101
$GID = 1 1
$EGID = 1 1
Perl module toolchain versions installed:
Module Have
------------------- --------
CPAN 2.34
CPAN::Meta 2.150010
Cwd 3.86
ExtUtils::CBuilder 0.280238
ExtUtils::Command 7.64
ExtUtils::Install 2.20
ExtUtils::MakeMaker 7.64
ExtUtils::Manifest 1.73
ExtUtils::ParseXS 3.47
File::Spec 3.87
JSON 4.10
JSON::PP 4.12
Module::Build 0.4231
Module::Signature n/a
Parse::CPAN::Meta 2.150010
Test::Harness 3.44
Test::More 1.302191
YAML 1.30
YAML::Syck 1.34
version 0.9929
--
Summary of my perl5 (revision 5 version 37 subversion 6) configuration:
Commit id: 111376aacc6d2497dc1cb1e072f0773c6c990ad5
Platform:
osname=solaris
osvers=2.11
archname=i86pc-solaris-thread-multi-64
uname='sunos cjg-omniosce 5.11 omnios-r151038-ef7fcbcae5 i86pc i386 i86pc '
config_args='-des -Dprefix=~/bin/perl-blead -Dscriptdir=~/bin/perl-blead/bin -Dusedevel -Duse64bitall -Dcc=gcc -Duseithreads'
hint=recommended
useposix=true
d_sigaction=define
useithreads=define
usemultiplicity=define
use64bitint=define
use64bitall=define
uselongdouble=undef
usemymalloc=n
default_inc_excludes_dot=define
Compiler:
cc='gcc'
ccflags ='-D_REENTRANT -m64 -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2'
optimize='-O'
cppflags='-D_REENTRANT -m64 -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong'
ccversion=''
gccversion='10.3.0'
gccosandvers=''
intsize=4
longsize=8
ptrsize=8
doublesize=8
byteorder=12345678
doublekind=3
d_longlong=define
longlongsize=8
d_longdbl=define
longdblsize=16
longdblkind=3
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-strong -L/usr/gnu/lib '
libpth=/opt/gcc-10/lib /usr/lib /usr/gnu/lib /usr/ccs/lib
libs=-lpthread -lsocket -lnsl -ldl -lm -lc
perllibs=-lpthread -lsocket -lnsl -ldl -lm -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 /export/home/cpan/bin/perl-blead/lib/5.37.6/i86pc-solaris-thread-multi-64/CORE'
cccdlflags='-fPIC'
lddlflags=' -shared -m64 -L/usr/gnu/lib -fstack-protector-strong'
Characteristics of this binary (from libperl):
Compile-time options:
HAS_TIMES
MULTIPLICITY
PERLIO_LAYERS
PERL_COPY_ON_WRITE
PERL_DONT_CREATE_GVSV
PERL_HASH_FUNC_SIPHASH13
PERL_HASH_USE_SBOX32
PERL_MALLOC_WRAP
PERL_OP_PARENT
PERL_PRESERVE_IVUV
PERL_USE_DEVEL
PERL_USE_SAFE_PUTENV
USE_64_BIT_ALL
USE_64_BIT_INT
USE_ITHREADS
USE_LARGE_FILES
USE_LOCALE
USE_LOCALE_COLLATE
USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC
USE_LOCALE_TIME
USE_PERLIO
USE_PERL_ATOF
USE_REENTRANT_API
USE_THREAD_SAFE_LOCALE
Built under solaris
Compiled at Nov 9 2022 19:59:11
%ENV:
PERL="/export/home/cpan/bin/perl-blead/bin/perl5.37.6"
PERL5LIB=""
PERL5OPT=""
PERL5_CPANPLUS_IS_RUNNING="24767"
PERL5_CPAN_IS_RUNNING="24767"
PERL_MM_USE_DEFAULT="1"
PERL_USE_UNSAFE_INC="1"
PERL_VERSION="blead"
@INC:
/export/home/cpan/bin/perl-blead/lib/site_perl/5.37.6/i86pc-solaris-thread-multi-64
/export/home/cpan/bin/perl-blead/lib/site_perl/5.37.6
/export/home/cpan/bin/perl-blead/lib/5.37.6/i86pc-solaris-thread-multi-64
/export/home/cpan/bin/perl-blead/lib/5.37.6
.