Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | applying patches and upstream | Aaron Crane | 2009-01-14 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | 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 | ||||
* | Actually commit the state infomation at the end of a test run. | Nicholas Clark | 2009-01-14 | 1 | -0/+5 |
| | | | | Reduces my elapsed time by about 5% threaded or unthreaded on the second run. | ||||
* | Make make_ext.pl write out a shell script of its actions for make distclean etc | Nicholas Clark | 2009-01-14 | 2 | -3/+47 |
| | | | | | (In case the user runs make clean; make distclean; as clean removes miniperl) Change the #! line to ./miniperl | ||||
* | If there is one argument, and it looks like a commit, list data from the files | Nicholas Clark | 2009-01-13 | 1 | -1/+6 |
| | | | | that commit changed. For example, `perl Porting/Maintainers HEAD`. | ||||
* | Add the upstream status to the output of Porting/Maintainers for --opened. | Nicholas Clark | 2009-01-13 | 1 | -1/+2 |
| | |||||
* | chomp the output from git ls-files. Display a helpful message nothing is | Nicholas Clark | 2009-01-13 | 1 | -1/+4 |
| | | | | modified, rather than failing back to the usage message. | ||||
* | ext/Hash/Util/Makefile.PL should not recurse to FieldHash's Makefile.PL | Nicholas Clark | 2009-01-13 | 1 | -1/+1 |
| | | | | | | *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 time64.c build warning | Jerry D. Hedden | 2009-01-13 | 1 | -0/+2 |
| | | | | | | | Silence the following build warning: time64.c:169: warning: 'check_tm' defined but not used Message-ID: <1ff86f510901081219q4f5f25a3od89c4e5ac03e8664@mail.gmail.com> | ||||
* | Silence Win32 compiler warnings. | Steve Hay | 2009-01-13 | 2 | -4/+3 |
| | |||||
* | Give the git file browser URL as the most up to date version of this file. | Nicholas Clark | 2009-01-13 | 1 | -5/+8 |
| | |||||
* | Restore Win32 build by creating git_version.h. | Steve Hay | 2009-01-13 | 2 | -14/+38 |
| | | | | | | | | | | | | | 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. | ||||
* | vms - unixspec refactor | John Malmberg | 2009-01-13 | 1 | -30/+156 |
| | | | | | | | | | 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. | ||||
* | Capitalize "SysV" correctly | Abigail | 2009-01-13 | 1 | -4/+4 |
| | |||||
* | vms - vmsspec refactor | John Malmberg | 2009-01-12 | 1 | -30/+181 |
| | | | | | | Message-id: <496AC3E0.2090207@gmail.com> Refactor of vmsspec() to not use a thread context for internal routines. | ||||
* | Fix my refactoring typo in change 33001 that broke suidperl, only spotted 11 | Nicholas Clark | 2009-01-12 | 1 | -1/+1 |
| | | | | months later, after 5.8.9 was released. | ||||
* | show -E in error message when called with -E | Renée Bäcker | 2009-01-12 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | 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 | ||||
* | Add $(EXE_EXT) where it was missing from $(RUN) ./miniperl | Nicholas Clark | 2009-01-12 | 1 | -10/+10 |
| | |||||
* | Correct the over-zealous addition of $(RUN) into test -f ./miniperl$(EXE_EXT) | Nicholas Clark | 2009-01-12 | 1 | -2/+2 |
| | | | | (in change cef6ea9dde586d23f429802e75d22875450d6b68) | ||||
* | make_patchnum requires miniperl$(EXE_EXT) to run, so it needs to depend on it. | Nicholas Clark | 2009-01-12 | 1 | -2/+2 |
| | | | | | | | 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'. | ||||
* | Ignore ext/DB_File/constants.xs. | Florian Ragwitz | 2009-01-12 | 1 | -1/+1 |
| | |||||
* | Fix typo in pod/perlhack.pod | Abigail | 2009-01-12 | 1 | -1/+1 |
| | |||||
* | Merge commit 'nothingmuch/p4_git_utils' into blead | Rafael Garcia-Suarez | 2009-01-12 | 2 | -0/+14 |
|\ | |||||
| * | add git-make-p4-refs script to Porting | Yuval Kogman | 2009-01-12 | 2 | -0/+14 |
| | | |||||
* | | Test that overload::constant works in eval("") | Rafael Garcia-Suarez | 2009-01-12 | 1 | -1/+8 |
|/ | |||||
* | more vms thread ctx fixes | John Malmberg | 2009-01-11 | 1 | -13/+23 |
| | | | | | | | | | 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. | ||||
* | Add -Ilib to the invocations of make_ext.pl. I guess Steffen had a copy of perl | Nicholas Clark | 2009-01-11 | 1 | -6/+6 |
| | | | | already installed whilst testing. | ||||
* | Remove make_patchnum.com from MANIFEST following | Nicholas Clark | 2009-01-11 | 1 | -1/+0 |
| | | | | c24e7b67b597eaa15fbaca34ebb57a7cc242d937h | ||||
* | Merge branch 'blead' into miniperl-make-ext | Steffen Mueller | 2009-01-11 | 1 | -48/+0 |
|\ | |||||
| * | Remove make_patchnum.com (now using make_patchnum.pl) | Craig A. Berry | 2009-01-11 | 1 | -48/+0 |
| | | |||||
* | | Merge branch 'blead' into miniperl-make-ext | Steffen Mueller | 2009-01-11 | 3 | -13/+39 |
|\ \ | |/ | |||||
| * | File::Copy fixes for VMS follow-up | John Malmberg | 2009-01-10 | 1 | -1/+1 |
| | | | | | | | | | | | | | | 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. | ||||
| * | vms setup_cmddsc buffer fixes. | John Malmberg | 2009-01-10 | 1 | -5/+31 |
| | | | | | | | | Message-id: <4968E50E.6050601@gmail.com> | ||||
| * | Revision to thread context fixes from ebd4d70bfcb408fd33ee8841c43d30ca8408b19d | Craig A. Berry | 2009-01-10 | 1 | -6/+6 |
| | | |||||
| * | Fix typo in pod/perldsc.pod | Abigail | 2009-01-10 | 1 | -1/+1 |
| | | |||||
* | | miniperl-ification of ext/utils/make_ext | Steffen Mueller | 2009-01-10 | 1 | -117/+158 |
| | | |||||
* | | move ext/utils/make_ext to ext/utils/make_ext.pl | Steffen Mueller | 2009-01-10 | 3 | -8/+8 |
|/ | |||||
* | Typo fix in pod/perldiag.pod | Abigail | 2009-01-10 | 1 | -1/+1 |
| | |||||
* | 'VMS support for Unix and extended file specifications' (PathTools RT #42153) | John Malmberg | 2009-01-09 | 5 | -94/+798 |
| | |||||
* | Merge changes from PathTools: 'Update to support VMS in Unix compatible mode ↵ | John Malmberg | 2009-01-09 | 4 | -22/+126 |
| | | | | and/or file names using extended character sets' (PathTools RT #42154) | ||||
* | Be consistent in writing deobfuscator | Abigail | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | Fix typo | Abigail | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | Capitalize "latin" | Abigail | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | fake_localtime_r and fake_gmtime_r may need thread context. | Craig A. Berry | 2009-01-09 | 1 | -0/+2 |
| | | | | They definitely need it on VMS. | ||||
* | simple_trnlnm needs an actual length as its last argument. | Craig A. Berry | 2009-01-09 | 1 | -9/+9 |
| | | | | | | Plus the length of sys$posix_root was miscalculated. Plus an argument reversal when translating the TMP logical. | ||||
* | Typo fix in pod/perl5110delta.pod | Abigail | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | Fix typo in pod/perltodo.pod | Abigail | 2009-01-09 | 1 | -1/+1 |
| | |||||
* | -Be consistent with kb/kB. | Abigail | 2009-01-09 | 1 | -2/+3 |
| | | | | -Mention Abigail in last section. | ||||
* | Merge branch 'blead' of ssh://perl5.git.perl.org/gitroot/perl into blead | Abigail | 2009-01-09 | 1 | -39/+39 |
|\ | |||||
| * | Prefer tabs over spaces in MANIFEST | Vincent Pit | 2009-01-09 | 1 | -39/+39 |
| | | |||||
* | | Fixed some spelling errors | Abigail | 2009-01-09 | 1 | -3/+3 |
|/ |