X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/56022c66b16bfc6b3aa117972e6ebb4c3acb03f7..c94a4d0426ce91908610aafbedd4e5ccf77b21c3:/makedef.pl diff --git a/makedef.pl b/makedef.pl index 1fee334..2af197f 100644 --- a/makedef.pl +++ b/makedef.pl @@ -70,7 +70,7 @@ BEGIN { } use constant PLATFORM => $ARGS{PLATFORM}; -require "$ARGS{TARG_DIR}regen/embed_lib.pl"; +require "./$ARGS{TARG_DIR}regen/embed_lib.pl"; # Is the following guard strictly necessary? Added during refactoring # to keep the same behaviour when merging other code into here. @@ -206,13 +206,13 @@ if ($ARGS{PLATFORM} ne 'os2') { ++$skip{Perl_my_symlink} unless $Config{d_symlink}; } else { ++$skip{PL_statusvalue_vms}; + ++$skip{PL_perllib_sep}; if ($ARGS{PLATFORM} ne 'aix') { ++$skip{$_} foreach qw( PL_DBcv PL_generation PL_lastgotoprobe PL_modcount - PL_timesbuf main ); } @@ -253,6 +253,7 @@ unless ($define{'DEBUGGING'}) { Perl_debstackptrs Perl_pad_sv Perl_pad_setsv + Perl__setlocale_debug_string Perl_set_padlist Perl_hv_assert PL_watchaddr @@ -285,7 +286,7 @@ else { ); } -unless ($define{'PERL_COPY_ON_WRITE'}) { +if (!$define{'PERL_COPY_ON_WRITE'} || $define{'PERL_NO_COW'}) { ++$skip{Perl_sv_setsv_cow}; } @@ -364,6 +365,7 @@ unless ($define{'USE_ITHREADS'}) { PL_regex_padav PL_dollarzero_mutex PL_hints_mutex + PL_locale_mutex PL_my_ctx_mutex PL_perlio_mutex PL_stashpad @@ -397,6 +399,13 @@ unless ($define{'USE_ITHREADS'}) { ); } +unless ($define{'HAS_NEWLOCALE'} && ! $define{'NO_POSIX_2008_LOCALE'}) +{ + ++$skip{$_} foreach qw( + PL_C_locale_obj + ); +} + unless ($define{'PERL_IMPLICIT_CONTEXT'}) { ++$skip{$_} foreach qw( PL_my_cxt_index @@ -427,19 +436,13 @@ unless ($define{'PERL_OP_PARENT'}) { ); } -if ($define{'NO_MATHOMS'}) { - # win32 builds happen in the win32/ subdirectory, but vms builds happen - # at the top level, so we need to look in two candidate locations for - # the mathoms.c file. - my ($file) = grep { -f } qw( mathoms.c ../mathoms.c ) - or die "No mathoms.c file found in . or ..\n"; - open my $mathoms, '<', $file - or die "Cannot open $file: $!\n"; - while (<$mathoms>) { - ++$skip{$1} if /\A ( NATIVE_TO_NEED - | ASCII_TO_NEED - | Perl_\w+ ) \s* \( /axms; - } +unless ($define{'USE_DTRACE'}) { + ++$skip{$_} foreach qw( + Perl_dtrace_probe_call + Perl_dtrace_probe_load + Perl_dtrace_probe_op + Perl_dtrace_probe_phase + ); } unless ($define{'PERL_NEED_APPCTX'}) { @@ -478,6 +481,10 @@ unless ($define{'MULTIPLICITY'}) { ++$skip{$_} foreach qw( PL_interp_size PL_interp_size_5_18_0 + PL_sv_yes + PL_sv_undef + PL_sv_no + PL_sv_zero ); } @@ -569,6 +576,9 @@ if ($define{'PERL_GLOBAL_STRUCT'}) { ++$skip{PL_op_exec_cnt} unless $define{PERL_TRACE_OPS}; +++$skip{PL_hash_chars} + unless $define{PERL_USE_SINGLE_CHAR_HASH_CACHE}; + # functions from *.sym files my @syms = qw(globvar.sym); @@ -682,7 +692,9 @@ unless ($define{'USE_QUADMATH'}) { foreach (@$embed) { my ($flags, $retval, $func, @args) = @$_; next unless $func; - if ($flags =~ /[AX]/ && $flags !~ /[xmi]/ || $flags =~ /b/) { + if ( ($flags =~ /[AX]/ && $flags !~ /[xmi]/) + || ($flags =~ /b/ && ! $define{'NO_MATHOMS'})) + { # public API, so export # If a function is defined twice, for example before and after @@ -691,7 +703,7 @@ unless ($define{'USE_QUADMATH'}) { # mean "don't export" next if $seen{$func}++; # Should we also skip adding the Perl_ prefix if $flags =~ /o/ ? - $func = "Perl_$func" if ($flags =~ /[pbX]/ && $func !~ /^Perl_/); + $func = "Perl_$func" if ($flags =~ /[pX]/ && $func !~ /^Perl_/); ++$export{$func} unless exists $skip{$func}; } } @@ -938,6 +950,7 @@ elsif ($ARGS{PLATFORM} eq 'vms') { Perl_my_getpwuid Perl_my_gmtime Perl_my_kill + Perl_my_killpg Perl_my_localtime Perl_my_mkdir Perl_my_sigaction @@ -1220,7 +1233,7 @@ if ($ARGS{PLATFORM} =~ /^win(?:32|ce)$/) { if ($ARGS{PLATFORM} eq 'os2') { my (%mapped, @missing); - open MAP, 'miniperl.map' or die 'Cannot read miniperl.map'; + open MAP, '<', 'miniperl.map' or die 'Cannot read miniperl.map'; /^\s*[\da-f:]+\s+(\w+)/i and $mapped{$1}++ foreach ; close MAP or die 'Cannot close miniperl.map';