| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
| |
(1) all work done in a new git branch by default
(2) "-n" flag ("no branch") added to get old rsync-friendly behavior
(3) looks in "scripts/" directory as well as "bin/" for executables
(4) patches utils/Makefile.SH instead of utils/Makefile
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
We're now in sync with CPAN--no local changes remain in blead.
TODO: Various extra core changes are now required to handle the new bundle.pl script as per the existing config_data script.
|
|
|
|
| |
Fixes lib/feature.t and lib/warnings.t tests that have been failing on Win32 since commit 26b6dc3.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Nicholas Clark writes:
> $ perl Porting/Maintainers --opened
> (No files are modified)
I think that message would be even more helpful if it went to stderr;
(trivial) patch attached.
--
Aaron Crane ** http://aaroncrane.co.uk/
From afa6ac1c2f6bde792be6ac065a87119e1dbdafee Mon Sep 17 00:00:00 2001
From: Aaron Crane <perl@aaroncrane.co.uk>
Date: Wed, 14 Jan 2009 09:46:33 +0000
Subject: [PATCH] Send informative output to stderr, not stdout
|
|
|
|
| |
Reduces my elapsed time by about 5% threaded or unthreaded on the second run.
|
|
|
|
|
| |
(In case the user runs make clean; make distclean; as clean removes miniperl)
Change the #! line to ./miniperl
|
|
|
|
| |
that commit changed. For example, `perl Porting/Maintainers HEAD`.
|
| |
|
|
|
|
| |
modified, rather than failing back to the usage message.
|
|
|
|
|
|
| |
*nix, VMS and Win32 all know how to (and have to) call the latter directly.
As is, targets in ext/Hash/Util/FieldHash get called twice, which may result
in race conditions, and certainly messes up make clean; make distclean;
|
|
|
|
|
|
|
| |
Silence the following build warning:
time64.c:169: warning: 'check_tm' defined but not used
Message-ID: <1ff86f510901081219q4f5f25a3od89c4e5ac03e8664@mail.gmail.com>
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
This solution is based on what is done for config.h (which isn't perfect because it leaves miniperl.exe out-of-sync with the final perl.exe build, but that doesn't really matter).
Also has a problem in that miniperl.exe is used in a couple of places before make_patchnum.pl has been run (to recreate git_version.h and create lib/Config_git.pl), causing the warning:
Warning: failed to load Config_git.pl, something strange about this perl...
The running of make_patchnum.pl also causes some warnings of its own if a ".git" directory is found but "git" isn't on the PATH:
'git' is not recognized as an internal or external command,
operable program or batch file.
These things will be hopefully ironed out later.
|
|
|
|
|
|
|
|
|
| |
Message-id: <496B5458.10203@gmail.com>
Refactor of unixspec() to not use a thread context for internal routines.
Also fix unixspec() to better handle unescaping extended file
specifications.
|
| |
|
|
|
|
|
|
| |
Message-id: <496AC3E0.2090207@gmail.com>
Refactor of vmsspec() to not use a thread context for internal routines.
|
|
|
|
| |
months later, after 5.8.9 was released.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Currently, perl shows -e if an error occurs even it is called with -E.
The attached patch changes this...
Current behaviour:
D:\Perl510\bin>perl.exe -E "say ->"
syntax error at -e line 1, at EOF
Execution of -e aborted due to compilation errors.
With patch:
D:\Perl510\bin>perl.exe -E "say ->"
syntax error at -E line 1, at EOF
Execution of -E aborted due to compilation errors.
Cheers,
Renee
|
| |
|
|
|
|
| |
(in change cef6ea9dde586d23f429802e75d22875450d6b68)
|
|
|
|
|
|
|
| |
Also, make_patchnum had not been part of the prerequisites of the common
targets 'perl' or 'test', only 'all', so often it was not getting run. Add it
as a prerequisite of perl$(EXT_EXE), so that it is run on 'make perl' or
'make test'.
|
| |
|
| |
|
|\ |
|
| | |
|
|/ |
|
|
|
|
|
|
|
|
|
| |
Message-id: <496973AB.8070809@gmail.com>
If Perl_my_trnlnm is called with a null implicit context, it would
access violate.
create_mbx does not need a implicit context.
|
|
|
|
| |
already installed whilst testing.
|
|
|
|
| |
c24e7b67b597eaa15fbaca34ebb57a7cc242d937h
|
|\ |
|
| | |
|
|\ \
| |/ |
|
| |
| |
| |
| |
| |
| |
| | |
Message-id: <4968EBA8.8090207@gmail.com>
The eval block needs to capture local $SIG{__DIE__} to prevent modules
with signal trapping from failing when VMS::Feature is not present.
|
| |
| |
| |
| | |
Message-id: <4968E50E.6050601@gmail.com>
|
| | |
|
| | |
|
| | |
|
|/ |
|
| |
|
| |
|
|
|
|
| |
and/or file names using extended character sets' (PathTools RT #42154)
|
| |
|
| |
|
| |
|
|
|
|
| |
They definitely need it on VMS.
|