summaryrefslogtreecommitdiff
path: root/Makefile.SH
Commit message (Collapse)AuthorAgeFilesLines
* Make new makedepend logic compatible with bsd makeLeon Timmermans2021-08-131-2/+2
| | | | | | | It used pattern rules, which are a gnu make feature that isn't supported by bsd makes (and probably other makes) For: https://github.com/Perl/perl5/pull/19047
* WIP: Run `makedepend` in parallel by using `make`Max Maischein2021-08-111-1/+5
| | | | | | | | | | | | This moves the per-file loop body of `makedepend` into a separate file named `makedepend_file` and then uses `make` to launch the `makedepend_file` processes for each target potentially in parallel. This reduces the time for time sh ./makedepend MAKE=make cflags from 5 seconds to 2 seconds with MAKEFLAGS=-j8
* Remove MI from FastCalcChris 'BinGOs' Williams2021-07-251-8/+7
|
* new perldelta for 5.35.3Neil Bowers2021-07-241-4/+4
|
* Upgraded Math::BigRat, Math::BigInt::FastCalc, Math::BigInt, & bignumNeil Bowers2021-07-221-7/+8
| | | | | They have interdependencies that require at least these versions, so needed to be added together.
* Introduce Pod::Html::AuxiliaryJames E Keenan2021-07-061-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | This package will hold helper subroutines used within the main package or in tests. They can be placed in a separate module and imported into Pod::Html because they won't depend on having the globals passed as an argument. They will also be potentially independently testable. Start with html_escape(). Move anchorify(), htmlify() to Auxiliary.pm. Also _unixify -- now as unixify(). Move relativize_url() to Auxiliary. Move usage() to Auxiliary. Move trim_leading_whitespace to Auxiliary. Move parse_command_line() to Auxiliary. Keep porting tests happy. Increment $VERSION. Run: ./perl -Ilib regen/lib_cleanup.pl anchorify.t, eol.t: Correct excessive corrections. Standardize setting of $VERSION.
* Makefile.SH: Fixes for z/OSKarl Williamson2021-06-281-2/+1
| | | | | | This removes two things that are causing problems: 1) a space in a parameter 2) DPERL_EXTERNAL_GLOB=''
* Correct typo in inline commentJames E Keenan2021-06-211-1/+1
|
* new perldelta for 5.35.2Max Maischein2021-06-201-4/+4
|
* perldelta: add a new delta for v5.35.1Ricardo Signes2021-05-201-4/+4
|
* New perldeltaSawyer X2021-05-211-4/+4
|
* Merge all perldelta files to create perl534delta.podSawyer X2021-05-041-4/+4
|
* new perldelta for 5.33.10Todd Rinaldo2021-04-201-4/+4
| | | | | 5.33.10 isn't going to happen but it looks like we bump to the bogus release and THEN switch to RC1.
* new perldelta for 5.33.9Nicolas R2021-03-201-4/+4
|
* add new perldelta for 5.33.8reneeb2021-02-201-4/+4
|
* New perldelta for 5.33.7Richard Leach2021-01-211-4/+4
|
* new perldelta for 5.33.6Max Maischein2020-12-201-4/+4
|
* Create new perldelta for 5.33.5Tom Hukins2020-11-201-4/+4
|
* Create new perldelta for 5.33.4Steve Hay2020-10-201-4/+4
|
* new perldelta for 5.33.3Sawyer X2020-09-211-4/+4
|
* Update Test-Simple to CPAN version 1.302181Todd Rinaldo2020-09-151-22/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | [DELTA] 1.302181 2020-09-14 09:46:04-07:00 America/Los_Angeles - put try_sig_mask back where it goes (And add test to prevent this in the future) - Drop new List::Util requirement back down 1.302180 2020-09-13 23:11:18-07:00 America/Los_Angeles - No changes since last trial 1.302179 2020-09-12 22:35:19-07:00 America/Los_Angeles (TRIAL RELEASE) - Bump minimum List::Util version (for uniq) 1.302178 2020-09-07 14:11:52-07:00 America/Los_Angeles (TRIAL RELEASE) - Move try_sig_mask to the only module that uses it. - Inherit warnings bitmask in cmp_ok string eval - Update copyright date - Improved API for interept {} and what it returns 1.302177 2020-08-06 21:46:06-07:00 America/Los_Angeles - Minor fix to author downstream test - No significant changes since the last trial 1.302176 2020-08-05 21:45:19-07:00 America/Los_Angeles (TRIAL RELEASE) - Fix Test::More's $TODO inside intercept (#862)
* new perldelta for 5.33.2Karen Etheridge2020-08-201-4/+4
|
* Remove PERL_GLOBAL_STRUCTDagfinn Ilmari Mannsåker2020-07-201-3/+3
| | | | | | | | This was originally added for MinGW, which no longer needs it, and only still used by Symbian, which is now removed. This also leaves perlapi.[ch] empty, but we keep the header for CPAN backwards compatibility.
* new perldelta for 5.33.1Sawyer X2020-07-171-4/+4
|
* Bumps, perldeltas, podsSawyer X2020-06-281-4/+4
|
* Fixup perldelta filesSawyer X2020-05-301-4/+4
|
* new perldelta for 5.31.11Sawyer X2020-04-291-4/+4
|
* Bump back to 5.31.11, if we need to release itSawyer X2020-04-091-4/+4
|
* Bump version to 5.32.0Sawyer X2020-03-211-4/+4
|
* new delta for 5.31.11Sawyer X2020-03-201-4/+4
|
* generated new perldelta after 5.31.9 releasereneeb2020-02-211-4/+4
|
* Do not ignore non-zero error code from 'make minitest'James E Keenan2020-02-041-3/+3
| | | | | | | | | | | | | | | | | | | | | | | In pipelines like: $ sh ./Configure -des -Dusedevel && \ make minitest && make test_harness ... we don't want to run 'make test_harness' unless 'make minitest' has succeeded. To test: $ echo "exit(1);" >> t/base/cond.t $ make minitest && echo "hello world" # [note that minitest fails quickly and 'echo' is not reached] $ git checkout -- t/base/cond.t $ make minitest && echo "hello world" # [note that minitest runs and 'echo' is reached] For: https://github.com/perl/perl5/issues/16160 Originally: https://rt-archive.perl.org/perl5/Ticket/Display.html?id=132139
* new perldelta for 5.31.9Matthew Horsfall2020-01-201-4/+4
|
* new perldelta for 5.31.8Nicolas R2019-12-201-4/+4
|
* new perldelta for v5.31.7Chris 'BinGOs' Williams2019-11-201-4/+4
|
* Create new perldelta for 5.31.6Steve Hay2019-10-201-4/+4
|
* new perldelta for 5.31.4Max Maischein2019-09-201-4/+4
|
* New perldelta for 5.31.4Tom Hukins2019-08-201-4/+4
|
* Create new perldelta for 5.31.3Steve Hay2019-07-201-4/+4
|
* (perl #134218) make sure ECHO is definedTony Cook2019-07-011-0/+1
| | | | | | | This is used in dtrace rules originally needed on FreeBSD, which appears to define ECHO to echo by default for Makefiles. But this isn't the case for Solaris-derived system makes.
* generate new perldeltaKaren Etheridge2019-06-201-4/+4
|
* Rename PPPort_xs.PL to RealPPPort_xs.PLNicolas R2019-06-041-1/+1
| | | | | | | | | | | Fixes Devel-PPPort GH #21 To avoid confusion rename the template for RealPPPort.xs file as RealPPPort_xs.PL so it's now clear what file it generates. (cherry picked from commit 0f14f67985491207f4a0e3936307f4c565717fd6) Signed-off-by: Nicolas R <atoomic@cpan.org>
* Make sure 'if' compiled before Pod::SimpleKarl Williamson2019-05-271-0/+1
| | | | 3.36 of Pod::Simple requires 'if', and this makes sure it works.
* Better document build dependency orderingKarl Williamson2019-05-271-1/+2
|
* new perldelta for 5.31.1Sawyer X2019-05-251-4/+4
|
* Fix perldelta from 5.30.1 to 5.31.0:Sawyer X2019-05-251-4/+4
| | | | | | 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-4/+4
|
* Revert "Rename PPPort_xs.PL to RealPPPort_xs.PL"Nicolas R2019-05-161-1/+1
| | | | | | This reverts commit 0f14f67985491207f4a0e3936307f4c565717fd6. need to apply after current freeze
* Rename PPPort_xs.PL to RealPPPort_xs.PLNicolas R2019-05-161-1/+1
| | | | | | | | Fixes Devel-PPPort GH #21 To avoid confusion rename the template for RealPPPort.xs file as RealPPPort_xs.PL so it's now clear what file it generates.
* Finalize perldeltaSawyer X2019-05-111-4/+4
|