summaryrefslogtreecommitdiff
path: root/vms
Commit message (Collapse)AuthorAgeFilesLines
* Create new perldelta for 5.32.2maint-5.32Steve Hay2021-01-231-1/+1
|
* New perldeltaSteve Hay2020-12-181-1/+1
| | | | | | (not cherry picked from commit 0382c61de115275c09bf1fbe39aa02e6118da28c because a different sequence of events means that that commit made the next perldelta "perl5330delta" rather than "perl5321delta" as needed here)
* Fixup perldelta filesSawyer X2020-05-301-1/+1
|
* Fix a bunch of repeated-word typosDagfinn Ilmari Mannsåker2020-05-221-2/+2
| | | | | Mostly in comments and docs, but some in diagnostic messages and one case of 'or die die'.
* new perldelta for 5.31.11Sawyer X2020-04-291-1/+1
|
* Remove spurious double spaces before open braces in core C codeDagfinn Ilmari Mannsåker2020-04-131-1/+1
|
* Bump back to 5.31.11, if we need to release itSawyer X2020-04-091-1/+1
|
* Bump version to 5.32.0Sawyer X2020-03-211-1/+1
|
* new delta for 5.31.11Sawyer X2020-03-201-1/+1
|
* vmsish.h: Fix missing semicolon from 2bc5f86Craig A. Berry2020-03-191-1/+1
|
* Add mutex for accessing ENVKarl Williamson2020-03-111-1/+2
|
* generated new perldelta after 5.31.9 releasereneeb2020-02-211-1/+1
|
* new perldelta for 5.31.9Matthew Horsfall2020-01-201-1/+1
|
* new perldelta for 5.31.8Nicolas R2019-12-201-1/+1
|
* Add memCHRs() macro and use itKarl Williamson2019-12-181-3/+3
| | | | | | | This replaces strchr("list", c) calls throughout the core. They don't work properly when 'c' is a NUL, returning the position of the terminating NUL in "list" instead of failure. This could lead to segfaults or even security issues.
* new perldelta for v5.31.7Chris 'BinGOs' Williams2019-11-201-1/+1
|
* Remove lib/unicore/Heavy.plKarl Williamson2019-11-061-1/+1
| | | | | | | This file was for the use of utf8_heavy.pl. But now that that is incorporated into Unicode::UCD, move the definitions from Heavy.pl to lib/unicore/UCD.pl which is used by Unicode::UCD. This allows removing package names.
* Update IO-Compress to CPAN version 2.089Chris 'BinGOs' Williams2019-11-061-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 2.089 3 November 2019 * bin/streamzip Add zipstream to EXE_FILES https://github.com/pmqs/IO-Compress/issues/5 7f5ed78e5652125c9ba78aab720e18d384d59c00 fb8cd6480af6303f58fd2e12d4999cd1830f0c5f 2.088 31 October 2019 * t/105oneshot-zip-only.t Fix reset of CompSize 6034da95f1dc5a594edc0d26e6add8d86990ad56 * Add Support Details ad66b6ec4cf175a70e53f74572eed5f403648f11 * Update site for Bzip2 to sourceware 77497aeb2a234889a2b2c4ac7ea2f620895b16a9 * Fix number of tests bc4e234449a82fb00f66af752dfc4c96097b2a4d * Add streamzip script to bin 76d2795d0587bafb0cc398e97142740acba82a42 * zipdetails * Update zipdetails to version 1.11 8958cb3aa90745a4b3369479846846fdca6b4f76 * Zip64 extra field typo f186380d701fe5257f9fc92d69160dc6382cfc24 * t/105oneshot-zip-only.t test with deflated directory 16bfffcf5089af67cb7f68685cc61d06409cba73 * t/105oneshot-zip-only.t Add test for encrypted Zip files 5ad813115aed000f88d7df28261b43c00ae56525 2c64e255feb5a1ee33d033f7eccb6feca12ebe97 * Documentation Updates https://github.com/pmqs/IO-Compress/issues/2 e1fd0d4eda0a8496981cbd83ad06906f4ae586a5 * Mention xz, lzma etc https://github.com/pmqs/IO-Compress/issues/4 126f7b9da97b572d0fb89a9bdcc190c5405c72b8
* Create new perldelta for 5.31.6Steve Hay2019-10-201-1/+1
|
* new perldelta for 5.31.4Max Maischein2019-09-201-1/+1
|
* Prepare VMS linker GSMATCH for 5.32.Craig A. Berry2019-08-251-4/+3
| | | | | | | | | | | | | | | | | | | | | | | GSMATCH in the linker options file tells the image activator whether a dynamic library being loaded is compatible with what it originally linked against. Ideally we would like to encode the version number and all the options that can make a build binary incompatible with another build of the same version, but there are about 30 such options and only 8 bits (on Alpha) in which to store both the version number and the options. We've lived with only 3 bits reserved for 3 options, but as of version 32 of Perl 5, we'll need 6 bits for the version number: $ perl -e "$v = 31; printf('%b', $v);" 11111 $ perl -e "$v = 32; printf('%b', $v);" 100000 leaving us only 2 bits for options. The code modified here only kicks in when PERLSHR_USE_GSMATCH is defined in the environment.
* New perldelta for 5.31.4Tom Hukins2019-08-201-1/+1
|
* vms/vms.c: fix unused relational comparison resultAlexandr Savca2019-07-251-1/+1
| | | | Closes [perl #134307].
* Create new perldelta for 5.31.3Steve Hay2019-07-201-1/+1
|
* Begin restore of case sensitive symbols on VMSCraig A. Berry2019-06-222-3/+3
| | | | | | | | | | | | There is a long-unmaintained option to build with case sensitive symbols, which is needed by some extensions that have symbols that differ only by case and need the Perl core to be built with the same option. There will be additional steps necessary, but getting "perl" and "globals" in the correct case is a start. We no longer need to explicitly specify globals for the linker, so don't do that and thus avoid having to guess which case it wants.
* generate new perldeltaKaren Etheridge2019-06-201-1/+1
|
* new perldelta for 5.31.1Sawyer X2019-05-251-1/+1
|
* Fix perldelta from 5.30.1 to 5.31.0:Sawyer X2019-05-251-1/+1
| | | | | | perldelta was accidentally set to 5.30.1 instead of 5.31.0. Hopefully this commit should fix it, along with the correction of the symlink in pod/.
* New perldeltaSawyer X2019-05-221-1/+1
|
* Finalize perldeltaSawyer X2019-05-111-1/+1
|
* new perldelta for 5.29.11, even though we won't see itSawyer X2019-04-201-1/+1
|
* New perldelta for 5.29.10Zak B. Elep2019-03-211-1/+1
|
* realclean unidatafiles on VMS the same way as elsewhere.Craig A. Berry2019-03-161-2/+7
| | | | | | | We were deleting lib/unicore/*.pl, but with uni_keywords.pl there is now one non-generated .pl file in that directory. Deleting it in realclean caused subsequent configure attempts in the same directory tree to fail.
* New perldelta for 5.29.9Nicolas R2019-02-201-1/+1
|
* New perldelta for 5.29.8Abigail2019-01-201-1/+1
|
* New perldelta for 5.29.7Abigail2018-12-181-1/+1
|
* new perldelta for 5.29.6Karen Etheridge2018-11-201-1/+1
|
* Create new perldelta for 5.29.5-to-beAaron Crane2018-10-201-1/+1
|
* new perldelta for 5.29.4John SJ Anderson2018-09-201-1/+1
|
* new perldelta for 5.29.3Chris 'BinGOs' Williams2018-08-201-1/+1
|
* Create new perldelta for 5.29.2Steve Hay2018-07-201-1/+1
|
* new perldelta for 5.29.1Sawyer X2018-06-271-1/+1
|
* new perldelta for 5.29.0Sawyer X2018-06-241-1/+1
|
* Add per5280delta.pod to MANIFESTSawyer X2018-06-221-1/+1
|
* Fixes for 5.28.0Sawyer X2018-05-201-1/+1
|
* new perldelta for 5.27.12 or 5.28.0Sawyer X2018-04-201-1/+1
|
* New Perldelta for 5.27.11Todd Rinaldo2018-03-201-1/+1
|
* New Perldeltareneeb2018-03-021-1/+1
|
* Fix reversed logic from 1d60dc3fde1056479b.Craig A. Berry2018-01-221-1/+1
| | | | Fat-fingered this one somehow.
* Make VMS CRTL features work for embedders.Craig A. Berry2018-01-211-186/+145
| | | | | | | | | | | | | | | | | | | | | The various run-time features of the CRTL that Perl uses were being fetched at image activation time and stored in static variables for later reference. That works ok when Perl is the program, but not when Perl is the library since in the latter case attempts by an embedder to alter the feature settings before invoking Perl were being ignored. So store the feature index, not its value, and use that index to get the current value via decc$feature_get_value whenever we need it. This means function calls rather than data references, but there is no measurable impact on performance. Also fix a bug in the handling of the feature to disable the POSIX root; we were saying we were disabling it but weren't really doing so because its current value cannot be set for some reason (only its default value). Since the feature only affects the conversion of filenames between Unix and VMS format and we don't use the CRTL's functions for that, it's unlikely this bug ever caused trouble.