diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-07-19 16:07:53 +0200 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-08-01 11:53:51 +0200 |
commit | a5b12fd07d9fdc63a5a4a6a6ac9d360ecfe660df (patch) | |
tree | 89bfc2fdc3c7fb3626a76ad5186598d3da004005 /makedef.pl | |
parent | cf3847c7789d796a05e4c90dbc31fbd21918e793 (diff) | |
download | perl-a5b12fd07d9fdc63a5a4a6a6ac9d360ecfe660df.tar.gz |
In makedef.pl, remove PL_csh{len,name} from 3 skip lists.
PL_cshname was converted to a true global by commit 618b9757aa96db62 in
2007, and PL_cshlen to a constant macro. Effectively both were dropped from
the list of exported symbols at this time, although as they were skipped on
Win32, WinCE and NetWare, the only platforms which would have noticed would
be AIX, OS/2 and VMS. As they've been missing in 5.10.0, 5.12.0 and 5.14.0
without any bug reports, it doesn't seem worth re-adding PL_cshname to the
list of exported symbols.
Diffstat (limited to 'makedef.pl')
-rw-r--r-- | makedef.pl | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/makedef.pl b/makedef.pl index 8f7162244d..1cb96935ac 100644 --- a/makedef.pl +++ b/makedef.pl @@ -278,8 +278,6 @@ if ($PLATFORM eq 'win32') { PL_modcount PL_timesbuf main - PL_cshlen - PL_cshname )]; } elsif ($PLATFORM ne 'vms') { @@ -305,8 +303,6 @@ if ($PLATFORM eq 'wince') { win32_get_childenv win32_spawnvp main - PL_cshlen - PL_cshname )]; } elsif ($PLATFORM eq 'aix') { @@ -402,8 +398,6 @@ elsif ($PLATFORM eq 'netware') { PL_modcount PL_timesbuf main - PL_cshlen - PL_cshname )]; } elsif ($PLATFORM eq 'vms') { |