Config-UCL v0.04 Perl 5 v5.30.0 x86_64-linux
- Status
- Unknown
- From
- Slaven Rezić (SREZIC)
- Dist
-
Config-UCL v0.04
- Platform
- Perl 5 v5.30.0 x86_64-linux
- Date
- 2020-02-12 20:44:51
- ID
- 847bd342-4dd8-11ea-87e5-30421f24ea8f
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 Tomohiro Hosaka,
This is a computer-generated report for Config-UCL-0.04
on perl 5.30.0, 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:
none provided
------------------------------
PROGRAM OUTPUT
------------------------------
Output from '/usr/bin/make':
cp lib/Config/UCL.pm blib/lib/Config/UCL.pm
Running Mkbootstrap for UCL ()
chmod 644 "UCL.bs"
"/opt/perl-5.30.0/bin/perl" -MExtUtils::Command::MM -e 'cp_nonempty' -- UCL.bs blib/arch/auto/Config/UCL/UCL.bs 644
"/opt/perl-5.30.0/bin/perl" "/opt/perl-5.30.0/lib/5.30.0/ExtUtils/xsubpp" -typemap '/opt/perl-5.30.0/lib/5.30.0/ExtUtils/typemap' -typemap '/home/cpansand/.cpan/build/2020021220/Config-UCL-0.04-3/typemap' UCL.xs > UCL.xsc
mv UCL.xsc UCL.c
cc -c -I/usr/include/ucl -fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -O2 -DVERSION=\"0.04\" -DXS_VERSION=\"0.04\" -fPIC "-I/opt/perl-5.30.0/lib/5.30.0/x86_64-linux/CORE" UCL.c
UCL.xs:13:8: error: unknown type name 'ucl_object_t'
static ucl_object_t *
^~~~~~~~~~~~
UCL.xs: In function '_iterate_perl':
UCL.xs:16:16: warning: implicit declaration of function 'ucl_object_new'; did you mean 'ucl_byte'? [-Wimplicit-function-declaration]
return ucl_object_new();
^~~~~~~~~~~~~~
ucl_byte
UCL.xs:16:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_new();
^~~~~~~~~~~~~~~~
UCL.xs:28:16: warning: implicit declaration of function 'ucl_object_frombool' [-Wimplicit-function-declaration]
return ucl_object_frombool( SvTRUE(obj) );
^~~~~~~~~~~~~~~~~~~
UCL.xs:28:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_frombool( SvTRUE(obj) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs:31:9: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
ucl_object_t *top, *elm;
^~~~~~~~~~~~
ucontext_t
UCL.xs:32:15: warning: implicit declaration of function 'ucl_object_typed_new' [-Wimplicit-function-declaration]
top = ucl_object_typed_new(UCL_ARRAY);
^~~~~~~~~~~~~~~~~~~~
UCL.xs:32:36: error: 'UCL_ARRAY' undeclared (first use in this function); did you mean 'G_ARRAY'?
top = ucl_object_typed_new(UCL_ARRAY);
^~~~~~~~~
G_ARRAY
UCL.xs:32:36: note: each undeclared identifier is reported only once for each function it appears in
UCL.xs:38:13: warning: implicit declaration of function 'ucl_array_append' [-Wimplicit-function-declaration]
ucl_array_append(top, elm);
^~~~~~~~~~~~~~~~
UCL.xs:43:9: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
ucl_object_t *top, *elm;
^~~~~~~~~~~~
ucontext_t
UCL.xs:45:36: error: 'UCL_OBJECT' undeclared (first use in this function); did you mean 'SVs_OBJECT'?
top = ucl_object_typed_new(UCL_OBJECT);
^~~~~~~~~~
SVs_OBJECT
UCL.xs:54:13: warning: implicit declaration of function 'ucl_object_insert_key' [-Wimplicit-function-declaration]
ucl_object_insert_key(top, elm, key, 0, true);
^~~~~~~~~~~~~~~~~~~~~
UCL.xs:59:16: warning: implicit declaration of function 'ucl_object_fromint' [-Wimplicit-function-declaration]
return ucl_object_fromint(SvIV(obj));
^~~~~~~~~~~~~~~~~~
UCL.xs:59:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_fromint(SvIV(obj));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs:62:16: warning: implicit declaration of function 'ucl_object_fromdouble' [-Wimplicit-function-declaration]
return ucl_object_fromdouble(SvNV(obj));
^~~~~~~~~~~~~~~~~~~~~
UCL.xs:62:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_fromdouble(SvNV(obj));
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs:66:16: warning: implicit declaration of function 'ucl_object_fromstring_common' [-Wimplicit-function-declaration]
return ucl_object_fromstring_common( SvPV_nolen(obj), strlen(SvPV_nolen(obj)), ucl_string_flags );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs:66:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_fromstring_common( SvPV_nolen(obj), strlen(SvPV_nolen(obj)), ucl_string_flags );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs:69:16: warning: returning 'int' from a function with return type 'int *' makes pointer from integer without a cast [-Wint-conversion]
return ucl_object_new();
^~~~~~~~~~~~~~~~
UCL.xs: At top level:
UCL.xs:76:18: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
_ucl_type (pTHX_ ucl_object_t const *obj)
^~~~~~~~~~~~
ucontext_t
UCL.xs:104:21: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
_iterate_ucl (pTHX_ ucl_object_t const *obj) {
^~~~~~~~~~~~
ucontext_t
UCL.xs:155:24: warning: 'struct ucl_parser' declared inside parameter list will not be visible outside of this definition or declaration
_load_ucl(pTHX_ struct ucl_parser *parser) {
^~~~~~~~~~
UCL.xs: In function '_load_ucl':
UCL.xs:157:23: warning: implicit declaration of function 'ucl_parser_get_error'; did you mean 'Perl_parse_termexpr'? [-Wimplicit-function-declaration]
const char *err = ucl_parser_get_error(parser);
^~~~~~~~~~~~~~~~~~~~
Perl_parse_termexpr
UCL.xs:157:23: warning: initialization of 'const char *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
UCL.xs:163:9: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
ucl_object_t *uclobj = ucl_parser_get_object(parser);
^~~~~~~~~~~~
ucontext_t
UCL.xs:163:32: warning: implicit declaration of function 'ucl_parser_get_object' [-Wimplicit-function-declaration]
ucl_object_t *uclobj = ucl_parser_get_object(parser);
^~~~~~~~~~~~~~~~~~~~~
UCL.xs:163:32: warning: initialization of 'int *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
UCL.xs:164:15: warning: implicit declaration of function '_iterate_ucl'; did you mean '_iterate_perl'? [-Wimplicit-function-declaration]
ret = _iterate_ucl(aTHX_ uclobj);
^~~~~~~~~~~~
_iterate_perl
UCL.xs:164:13: warning: assignment to 'SV *' {aka 'struct sv *'} from 'int' makes pointer from integer without a cast [-Wint-conversion]
ret = _iterate_ucl(aTHX_ uclobj);
^
UCL.c: In function 'XS_Config__UCL__ucl_dump':
UCL.c:381:2: error: unknown type name 'ucl_emitter_t'; did you mean 'register_t'?
ucl_emitter_t emitter = (ucl_emitter_t)SvIV(ST(2))
^~~~~~~~~~~~~
register_t
UCL.c:381:27: error: 'ucl_emitter_t' undeclared (first use in this function); did you mean 'emitter'?
ucl_emitter_t emitter = (ucl_emitter_t)SvIV(ST(2))
^~~~~~~~~~~~~
emitter
UCL.xs:180:2: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
ucl_object_t *root = NULL;
^~~~~~~~~~~~
ucontext_t
In file included from /opt/perl-5.30.0/lib/5.30.0/x86_64-linux/CORE/perl.h:5359,
from UCL.xs:3:
UCL.xs:183:38: warning: implicit declaration of function 'ucl_object_emit' [-Wimplicit-function-declaration]
RETVAL = newSVpv((char *)ucl_object_emit(root, emitter), 0);
^~~~~~~~~~~~~~~
/opt/perl-5.30.0/lib/5.30.0/x86_64-linux/CORE/embed.h:541:42: note: in definition of macro 'newSVpv'
#define newSVpv(a,b) Perl_newSVpv(aTHX_ a,b)
^
UCL.xs:183:30: warning: cast to pointer from integer of different size [-Wint-to-pointer-cast]
RETVAL = newSVpv((char *)ucl_object_emit(root, emitter), 0);
^
/opt/perl-5.30.0/lib/5.30.0/x86_64-linux/CORE/embed.h:541:42: note: in definition of macro 'newSVpv'
#define newSVpv(a,b) Perl_newSVpv(aTHX_ a,b)
^
UCL.xs:186:13: warning: implicit declaration of function 'ucl_object_unref'; did you mean 'sv_set_undef'? [-Wimplicit-function-declaration]
ucl_object_unref(root);
^~~~~~~~~~~~~~~~
sv_set_undef
UCL.xs: In function 'XS_Config__UCL_ucl_validate':
UCL.xs:194:9: error: unknown type name 'ucl_object_t'; did you mean 'ucontext_t'?
ucl_object_t *data, *schema;
^~~~~~~~~~~~
ucontext_t
UCL.xs:196:33: error: storage size of 'err' isn't known
struct ucl_schema_error err;
^~~
UCL.xs:216:13: warning: implicit declaration of function 'ucl_object_validate' [-Wimplicit-function-declaration]
r = ucl_object_validate(schema, data, &err);
^~~~~~~~~~~~~~~~~~~
UCL.xs: In function 'XS_Config__UCL__Parser_new':
UCL.xs:236:30: warning: implicit declaration of function 'ucl_parser_new'; did you mean 'ucl_assert'? [-Wimplicit-function-declaration]
struct ucl_parser *parser = ucl_parser_new(flags);
^~~~~~~~~~~~~~
ucl_assert
UCL.xs:236:30: warning: initialization of 'struct ucl_parser *' from 'int' makes pointer from integer without a cast [-Wint-conversion]
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_register_variable':
UCL.c:505:2: warning: implicit declaration of function 'ucl_parser_register_variable' [-Wimplicit-function-declaration]
ucl_parser_register_variable(parser, var, value);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_set_filevars':
UCL.c:535:11: warning: implicit declaration of function 'ucl_parser_set_filevars' [-Wimplicit-function-declaration]
RETVAL = ucl_parser_set_filevars(parser, filename, need_expand);
^~~~~~~~~~~~~~~~~~~~~~~
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_add_string':
UCL.c:566:11: warning: implicit declaration of function 'ucl_parser_add_string'; did you mean 'ucl_version_string'? [-Wimplicit-function-declaration]
RETVAL = ucl_parser_add_string(parser, data, len);
^~~~~~~~~~~~~~~~~~~~~
ucl_version_string
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_add_chunk_full':
UCL.c:588:7: error: variable 'strat' has initializer but incomplete type
enum ucl_duplicate_strategy strat = (enum ucl_duplicate_strategy)SvIV(ST(4))
^~~~~~~~~~~~~~~~~~~~~~
UCL.c:589:1: error: conversion to incomplete type
;
^
UCL.c:588:30: error: storage size of 'strat' isn't known
enum ucl_duplicate_strategy strat = (enum ucl_duplicate_strategy)SvIV(ST(4))
^~~~~
UCL.c:590:7: error: variable 'parse_type' has initializer but incomplete type
enum ucl_parse_type parse_type = (enum ucl_parse_type)SvIV(ST(5))
^~~~~~~~~~~~~~
UCL.c:591:1: error: conversion to incomplete type
;
^
UCL.c:590:22: error: storage size of 'parse_type' isn't known
enum ucl_parse_type parse_type = (enum ucl_parse_type)SvIV(ST(5))
^~~~~~~~~~
UCL.c:603:11: warning: implicit declaration of function 'ucl_parser_add_chunk_full' [-Wimplicit-function-declaration]
RETVAL = ucl_parser_add_chunk_full(parser, data, len, priority, strat, parse_type);
^~~~~~~~~~~~~~~~~~~~~~~~~
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_add_file':
UCL.c:632:11: warning: implicit declaration of function 'ucl_parser_add_file'; did you mean 'Perl_parser_free'? [-Wimplicit-function-declaration]
RETVAL = ucl_parser_add_file(parser, filename);
^~~~~~~~~~~~~~~~~~~
Perl_parser_free
UCL.c: In function 'XS_Config__UCL__Parser_ucl_parser_add_file_full':
UCL.c:652:7: error: variable 'strat' has initializer but incomplete type
enum ucl_duplicate_strategy strat = (enum ucl_duplicate_strategy)SvIV(ST(3))
^~~~~~~~~~~~~~~~~~~~~~
UCL.c:653:1: error: conversion to incomplete type
;
^
UCL.c:652:30: error: storage size of 'strat' isn't known
enum ucl_duplicate_strategy strat = (enum ucl_duplicate_strategy)SvIV(ST(3))
^~~~~
UCL.c:654:7: error: variable 'parse_type' has initializer but incomplete type
enum ucl_parse_type parse_type = (enum ucl_parse_type)SvIV(ST(4))
^~~~~~~~~~~~~~
UCL.c:655:1: error: conversion to incomplete type
;
^
UCL.c:654:22: error: storage size of 'parse_type' isn't known
enum ucl_parse_type parse_type = (enum ucl_parse_type)SvIV(ST(4))
^~~~~~~~~~
UCL.c:667:11: warning: implicit declaration of function 'ucl_parser_add_file_full' [-Wimplicit-function-declaration]
RETVAL = ucl_parser_add_file_full(parser, filename, priority, strat, parse_type);
^~~~~~~~~~~~~~~~~~~~~~~~
UCL.xs: In function 'XS_Config__UCL__Parser_DESTROY':
UCL.xs:262:9: warning: implicit declaration of function 'ucl_parser_free'; did you mean 'Perl_parser_free'? [-Wimplicit-function-declaration]
ucl_parser_free(parser);
^~~~~~~~~~~~~~~
Perl_parser_free
UCL.xs: In function 'XS_Config__UCL__Parser_ucl_load':
UCL.xs:269:34: warning: passing argument 1 of '_load_ucl' from incompatible pointer type [-Wincompatible-pointer-types]
RETVAL = _load_ucl(aTHX_ parser);
^~~~~~
UCL.xs:155:36: note: expected 'struct ucl_parser *' but argument is of type 'struct ucl_parser *'
_load_ucl(pTHX_ struct ucl_parser *parser) {
~~~~~~~~~~~~~~~~~~~^~~~~~
./const-xs.inc: In function 'boot_Config__UCL':
./const-xs.inc:10:32: error: 'UCL_EMIT_JSON' undeclared (first use in this function); did you mean 'UCL_E_OK'?
{ "UCL_EMIT_JSON", 13, UCL_EMIT_JSON },
^~~~~~~~~~~~~
UCL_E_OK
./const-xs.inc:11:40: error: 'UCL_EMIT_JSON_COMPACT' undeclared (first use in this function)
{ "UCL_EMIT_JSON_COMPACT", 21, UCL_EMIT_JSON_COMPACT },
^~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:12:34: error: 'UCL_EMIT_CONFIG' undeclared (first use in this function)
{ "UCL_EMIT_CONFIG", 15, UCL_EMIT_CONFIG },
^~~~~~~~~~~~~~~
./const-xs.inc:13:32: error: 'UCL_EMIT_YAML' undeclared (first use in this function); did you mean 'UCL_INT_MAX'?
{ "UCL_EMIT_YAML", 13, UCL_EMIT_YAML },
^~~~~~~~~~~~~
UCL_INT_MAX
./const-xs.inc:14:35: error: 'UCL_EMIT_MSGPACK' undeclared (first use in this function); did you mean 'UCL_INT_MAX'?
{ "UCL_EMIT_MSGPACK", 16, UCL_EMIT_MSGPACK },
^~~~~~~~~~~~~~~~
UCL_INT_MAX
./const-xs.inc:15:31: error: 'UCL_EMIT_MAX' undeclared (first use in this function); did you mean 'UCL_INT_MAX'?
{ "UCL_EMIT_MAX", 12, UCL_EMIT_MAX },
^~~~~~~~~~~~
UCL_INT_MAX
./const-xs.inc:16:38: error: 'UCL_PARSER_ZEROCOPY' undeclared (first use in this function); did you mean 'MSG_ZEROCOPY'?
{ "UCL_PARSER_ZEROCOPY", 19, UCL_PARSER_ZEROCOPY },
^~~~~~~~~~~~~~~~~~~
MSG_ZEROCOPY
./const-xs.inc:17:37: error: 'UCL_PARSER_DEFAULT' undeclared (first use in this function); did you mean 'UTF8_ALLOW_DEFAULT'?
{ "UCL_PARSER_DEFAULT", 18, UCL_PARSER_DEFAULT },
^~~~~~~~~~~~~~~~~~
UTF8_ALLOW_DEFAULT
./const-xs.inc:18:43: error: 'UCL_PARSER_KEY_LOWERCASE' undeclared (first use in this function)
{ "UCL_PARSER_KEY_LOWERCASE", 24, UCL_PARSER_KEY_LOWERCASE },
^~~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:19:37: error: 'UCL_PARSER_NO_TIME' undeclared (first use in this function); did you mean 'UCL_VERSION_DATE'?
{ "UCL_PARSER_NO_TIME", 18, UCL_PARSER_NO_TIME },
^~~~~~~~~~~~~~~~~~
UCL_VERSION_DATE
./const-xs.inc:20:48: error: 'UCL_PARSER_NO_IMPLICIT_ARRAYS' undeclared (first use in this function)
{ "UCL_PARSER_NO_IMPLICIT_ARRAYS", 29, UCL_PARSER_NO_IMPLICIT_ARRAYS },
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:21:43: error: 'UCL_PARSER_SAVE_COMMENTS' undeclared (first use in this function)
{ "UCL_PARSER_SAVE_COMMENTS", 24, UCL_PARSER_SAVE_COMMENTS },
^~~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:22:43: error: 'UCL_PARSER_DISABLE_MACRO' undeclared (first use in this function)
{ "UCL_PARSER_DISABLE_MACRO", 24, UCL_PARSER_DISABLE_MACRO },
^~~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:23:41: error: 'UCL_PARSER_NO_FILEVARS' undeclared (first use in this function); did you mean 'USE_LARGE_FILES'?
{ "UCL_PARSER_NO_FILEVARS", 22, UCL_PARSER_NO_FILEVARS },
^~~~~~~~~~~~~~~~~~~~~~
USE_LARGE_FILES
./const-xs.inc:24:33: error: 'UCL_STRING_RAW' undeclared (first use in this function); did you mean 'BC_STRING_MAX'?
{ "UCL_STRING_RAW", 14, UCL_STRING_RAW },
^~~~~~~~~~~~~~
BC_STRING_MAX
./const-xs.inc:25:36: error: 'UCL_STRING_ESCAPE' undeclared (first use in this function); did you mean 'BC_STRING_MAX'?
{ "UCL_STRING_ESCAPE", 17, UCL_STRING_ESCAPE },
^~~~~~~~~~~~~~~~~
BC_STRING_MAX
./const-xs.inc:26:34: error: 'UCL_STRING_TRIM' undeclared (first use in this function); did you mean 'BC_STRING_MAX'?
{ "UCL_STRING_TRIM", 15, UCL_STRING_TRIM },
^~~~~~~~~~~~~~~
BC_STRING_MAX
./const-xs.inc:27:43: error: 'UCL_STRING_PARSE_BOOLEAN' undeclared (first use in this function)
{ "UCL_STRING_PARSE_BOOLEAN", 24, UCL_STRING_PARSE_BOOLEAN },
^~~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:28:39: error: 'UCL_STRING_PARSE_INT' undeclared (first use in this function); did you mean 'IP_TRANSPARENT'?
{ "UCL_STRING_PARSE_INT", 20, UCL_STRING_PARSE_INT },
^~~~~~~~~~~~~~~~~~~~
IP_TRANSPARENT
./const-xs.inc:29:42: error: 'UCL_STRING_PARSE_DOUBLE' undeclared (first use in this function)
{ "UCL_STRING_PARSE_DOUBLE", 23, UCL_STRING_PARSE_DOUBLE },
^~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:30:40: error: 'UCL_STRING_PARSE_TIME' undeclared (first use in this function)
{ "UCL_STRING_PARSE_TIME", 21, UCL_STRING_PARSE_TIME },
^~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:31:42: error: 'UCL_STRING_PARSE_NUMBER' undeclared (first use in this function)
{ "UCL_STRING_PARSE_NUMBER", 23, UCL_STRING_PARSE_NUMBER },
^~~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:32:35: error: 'UCL_STRING_PARSE' undeclared (first use in this function); did you mean 'BC_STRING_MAX'?
{ "UCL_STRING_PARSE", 16, UCL_STRING_PARSE },
^~~~~~~~~~~~~~~~
BC_STRING_MAX
./const-xs.inc:33:41: error: 'UCL_STRING_PARSE_BYTES' undeclared (first use in this function)
{ "UCL_STRING_PARSE_BYTES", 22, UCL_STRING_PARSE_BYTES },
^~~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:34:39: error: 'UCL_DUPLICATE_APPEND' undeclared (first use in this function)
{ "UCL_DUPLICATE_APPEND", 20, UCL_DUPLICATE_APPEND },
^~~~~~~~~~~~~~~~~~~~
./const-xs.inc:35:38: error: 'UCL_DUPLICATE_MERGE' undeclared (first use in this function)
{ "UCL_DUPLICATE_MERGE", 19, UCL_DUPLICATE_MERGE },
^~~~~~~~~~~~~~~~~~~
./const-xs.inc:36:40: error: 'UCL_DUPLICATE_REWRITE' undeclared (first use in this function)
{ "UCL_DUPLICATE_REWRITE", 21, UCL_DUPLICATE_REWRITE },
^~~~~~~~~~~~~~~~~~~~~
./const-xs.inc:37:38: error: 'UCL_DUPLICATE_ERROR' undeclared (first use in this function); did you mean 'UCL_E_ERROR'?
{ "UCL_DUPLICATE_ERROR", 19, UCL_DUPLICATE_ERROR },
^~~~~~~~~~~~~~~~~~~
UCL_E_ERROR
./const-xs.inc:38:32: error: 'UCL_PARSE_UCL' undeclared (first use in this function)
{ "UCL_PARSE_UCL", 13, UCL_PARSE_UCL },
^~~~~~~~~~~~~
./const-xs.inc:39:36: error: 'UCL_PARSE_MSGPACK' undeclared (first use in this function)
{ "UCL_PARSE_MSGPACK", 17, UCL_PARSE_MSGPACK },
^~~~~~~~~~~~~~~~~
./const-xs.inc:40:34: error: 'UCL_PARSE_CSEXP' undeclared (first use in this function); did you mean 'PERL_PHASE_CHECK'?
{ "UCL_PARSE_CSEXP", 15, UCL_PARSE_CSEXP },
^~~~~~~~~~~~~~~
PERL_PHASE_CHECK
./const-xs.inc:41:33: error: 'UCL_PARSE_AUTO' undeclared (first use in this function); did you mean 'UCL_PRIVATE'?
{ "UCL_PARSE_AUTO", 14, UCL_PARSE_AUTO },
^~~~~~~~~~~~~~
UCL_PRIVATE
make: *** [Makefile:341: UCL.o] Error 1
------------------------------
PREREQUISITES
------------------------------
Prerequisite modules loaded:
requires:
Module Need Have
------------------- ---- ----
JSON::PP 2.00 4.04
build_requires:
Module Need Have
------------------- ---- ----
ExtUtils::MakeMaker 0 7.44
Sort::Naturally 0 1.03
Test::Differences 0 0.67
Test::Exception 0 0.43
Test::LeakTrace 0 0.16
Test::Most 0 0.35
configure_requires:
Module Need Have
------------------- ---- ----
ExtUtils::Constant 0 0.25
ExtUtils::MakeMaker 0 7.44
------------------------------
ENVIRONMENT AND OTHER CONTEXT
------------------------------
Environment variables:
LANG = C
PATH = /usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/cpansand/bin/linux-gnu:/home/cpansand/bin/sh:/home/cpansand/bin:/usr/games:/home/cpansand/devel:/home/eserte/src/srezic-misc/scripts
PERL = /opt/perl-5.30.0/bin/perl
PERL5LIB =
PERL5OPT =
PERL5_CPANPLUS_IS_RUNNING = 20152
PERL5_CPAN_IS_RUNNING = 20152
PERL5_CPAN_IS_RUNNING_IN_RECURSION = 19308,20152
PERLDOC = -MPod::Perldoc::ToTextOverstrike
PERL_BATCH = yes
PERL_CANARY_STABILITY_NOPROMPT = 1
PERL_CPAN_REPORTER_CONFIG = /var/tmp/cpansmoker-1023/2020021220/cpanreporter_001_config.ini
PERL_EXTUTILS_AUTOINSTALL = --defaultdeps
PERL_USE_UNSAFE_INC = 1
SHELL = /usr/bin/zsh
TERM = screen
TMPDIR = /var/tmp/cpansmoker-1023/2020021220
Perl special variables (and OS-specific diagnostics, for MSWin32):
$^X = /opt/perl-5.30.0/bin/perl
$UID/$EUID = 1023 / 1023
$GID = 1023 1023
$EGID = 1023 1023
Perl module toolchain versions installed:
Module Have
------------------- --------
CPAN 2.27
CPAN::Meta 2.150010
Cwd 3.78
ExtUtils::CBuilder 0.280234
ExtUtils::Command 7.44
ExtUtils::Install 2.14
ExtUtils::MakeMaker 7.44
ExtUtils::Manifest 1.72
ExtUtils::ParseXS 3.40
File::Spec 3.78
JSON 4.02
JSON::PP 4.04
Module::Build 0.4231
Module::Signature n/a
Parse::CPAN::Meta 2.150010
Test::Harness 3.42
Test::More 1.302171
YAML 1.30
YAML::Syck 1.32
version 0.9924
--
Summary of my perl5 (revision 5 version 30 subversion 0) configuration:
Platform:
osname=linux
osvers=4.19.0-5-amd64
archname=x86_64-linux
uname='linux debian10 4.19.0-5-amd64 #1 smp debian 4.19.37-5+deb10u1 (2019-07-19) x86_64 gnulinux '
config_args='-ds -e -Dprefix=/opt/perl-5.30.0 -Dcf_email=srezic@cpan.org'
hint=recommended
useposix=true
d_sigaction=define
useithreads=undef
usemultiplicity=undef
use64bitint=define
use64bitall=define
uselongdouble=undef
usemymalloc=n
default_inc_excludes_dot=define
bincompat5005=undef
Compiler:
cc='cc'
ccflags ='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2'
optimize='-O2'
cppflags='-fwrapv -fno-strict-aliasing -pipe -fstack-protector-strong -I/usr/local/include'
ccversion=''
gccversion='8.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='cc'
ldflags =' -fstack-protector-strong -L/usr/local/lib'
libpth=/usr/local/lib /usr/lib/gcc/x86_64-linux-gnu/8/include-fixed /usr/include/x86_64-linux-gnu /usr/lib /lib/x86_64-linux-gnu /lib/../lib /usr/lib/x86_64-linux-gnu /usr/lib/../lib /lib
libs=-lpthread -lnsl -ldb -ldl -lm -lcrypt -lutil -lc
perllibs=-lpthread -lnsl -ldl -lm -lcrypt -lutil -lc
libc=libc-2.28.so
so=so
useshrplib=false
libperl=libperl.a
gnulibc_version='2.28'
Dynamic Linking:
dlsrc=dl_dlopen.xs
dlext=so
d_dlsymun=undef
ccdlflags='-Wl,-E'
cccdlflags='-fPIC'
lddlflags='-shared -O2 -L/usr/local/lib -fstack-protector-strong'
Characteristics of this binary (from libperl):
Compile-time options:
HAS_TIMES
PERLIO_LAYERS
PERL_COPY_ON_WRITE
PERL_DONT_CREATE_GVSV
PERL_MALLOC_WRAP
PERL_OP_PARENT
PERL_PRESERVE_IVUV
USE_64_BIT_ALL
USE_64_BIT_INT
USE_LARGE_FILES
USE_LOCALE
USE_LOCALE_COLLATE
USE_LOCALE_CTYPE
USE_LOCALE_NUMERIC
USE_LOCALE_TIME
USE_PERLIO
USE_PERL_ATOF
Built under linux
Compiled at Aug 6 2019 17:26:31
%ENV:
PERL="/opt/perl-5.30.0/bin/perl"
PERL5LIB=""
PERL5OPT=""
PERL5_CPANPLUS_IS_RUNNING="20152"
PERL5_CPAN_IS_RUNNING="20152"
PERL5_CPAN_IS_RUNNING_IN_RECURSION="19308,20152"
PERLDOC="-MPod::Perldoc::ToTextOverstrike"
PERL_BATCH="yes"
PERL_CANARY_STABILITY_NOPROMPT="1"
PERL_CPAN_REPORTER_CONFIG="/var/tmp/cpansmoker-1023/2020021220/cpanreporter_001_config.ini"
PERL_EXTUTILS_AUTOINSTALL="--defaultdeps"
PERL_USE_UNSAFE_INC="1"
@INC:
/opt/perl-5.30.0/lib/site_perl/5.30.0/x86_64-linux
/opt/perl-5.30.0/lib/site_perl/5.30.0
/opt/perl-5.30.0/lib/5.30.0/x86_64-linux
/opt/perl-5.30.0/lib/5.30.0
.