Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions regen/embed.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1722,11 +1722,7 @@ BEGIN
MDEREF_MASK
MDEREF_reload
MDEREF_SHIFT
memBEGINPs
memBEGINs
MEMBER_TO_FPTR
memENDPs
memENDs
memGE
memGT
memLE
Expand Down Expand Up @@ -2829,7 +2825,6 @@ BEGIN
STD_PAT_MODS
STD_PMMOD_FLAGS_CLEAR
STORE_LC_NUMERIC_SET_STANDARD
strBEGINs
Strerror
STRFMON_LOCK
STRFMON_UNLOCK
Expand Down Expand Up @@ -3779,6 +3774,8 @@ BEGIN

PERL_IN_REGCOMP_ANY
PERL_EXT_RE_BUILD
PERL_EXT_RE_DEBUG
PERL_EXT_RE_STATIC
PERL_IN_REGEX_ENGINE
PLUGGABLE_RE_EXTENSION
);
Expand Down Expand Up @@ -3809,6 +3806,9 @@ BEGIN
$cpp_ifdef_constraints{PERL_DEBUG_READONLY_OPS} = 0;
$cpp_ifdef_constraints{PERL_DEBUG_DUMPUNTIL} = 0;
$cpp_ifdef_constraints{PERL_ENABLE_EXPERIMENTAL_REGEX_OPTIMISATIONS} = 0;
$cpp_ifdef_constraints{PERL_ENABLE_EXTENDED_TRIE_OPTIMISATION} = 0;
$cpp_ifdef_constraints{PERL_ENABLE_POSITIVE_ASSERTION_STUDY} = 0;
$cpp_ifdef_constraints{PERL_ENABLE_TRIE_OPTIMISATION} = 0;
$cpp_ifdef_constraints{EXPERIMENTAL_INPLACESCAN} = 0;

# Appears to be obsolete; App:s2p, etc were created to handle this
Expand All @@ -3820,7 +3820,9 @@ BEGIN
$cpp_ifdef_constraints{WIN32_USE_FAKE_OLD_MINGW_LOCALES} = 0;

$cpp_ifdef_constraints{PERL_EXT} = 0;
$cpp_ifdef_constraints{PERL_EXT_RE_BUILD} = 0;
$cpp_ifdef_constraints{PERL_EXT_IO} = 0;
$cpp_ifdef_constraints{PERL_EXT_LANGINFO} = 0;
$cpp_ifdef_constraints{PERL_EXT_POSIX} = 0;

# This program evaluates the conditionals surrounding every #define in every
# examined header. It turns out that in many cases, using the constraints in
Expand Down
Loading