summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Move Pod::Perldoc from ext/ to dist/podderNicholas Clark2009-09-3017-17/+17
|
* Move Locale::Maketext::Simple from ext/ to dist/podder2Nicholas Clark2009-09-3012-11/+11
|
* Make Pod::Perldoc use PERLDOC_POD2 ENV varEnrico Sorcinelli2009-09-301-3/+8
| | | | | | | | | | | | | | | | * The "PERLDOC_POD2" environment variable could be used, to set once, the preferred translation (instead of using "-L" switch each time). eg. export PERLDOC_POD2=it If "PERLDOC_POD2=1", the language code will be auto-retrieved from locale, that is, from "LC_ALL" "LC_LANG" "LANG" environment variables respectively. export PERLDOC_POD2=1 * bug fix: -f switch works correctly with missing translations. * bug fix: perldoc now correctly works with several translators
* Simplify building the Perl code invoked for perl -VNicholas Clark2009-09-301-4/+3
|
* Adriano Ferreira prefers blead as upstreamSteffen Mueller2009-09-301-3/+3
| | | | | I'm skipping the entry for Shell.pm since it's going to be deprecated and should live on CPAN primarily.
* Pod formatting fixJosh ben Jore2009-09-291-1/+1
|
* Pod formatting fixRoberto C. S�nchez2009-09-291-1/+1
| | | | Signed-off-by: Josh ben Jore <jjore@cpan.org>
* Upgrade to Class::ISA 0.36 (Fixes installation directories only)Steffen Mueller2009-09-293-2/+6
|
* Add distribution reference for Pod::PlainerSteffen Mueller2009-09-291-0/+1
|
* Recursively delete all ppport.h files, instead of running mkppport --clean.Nicholas Clark2009-09-291-1/+4
| | | | | mkppport --clean relies on miniperl not yet being deleted, which doesn't always hold. Idea blatently stolen from Steve Hay's commit 85741d00cbd04edb.
* Running "mkppport --clean" at the end of "[nd]make distclean" on Win32Steve Hay2009-09-292-10/+4
| | | | | | is more trouble than it's worth: it can't find Getopt::Long, constant, Pod::Usage or Pod::Text (at least). Just recursively delete all ppport.h files instead, given that there aren't any in the distribution.
* On Win32, load File::Spec::Functions before chdir()ing somewhere where theSteve Hay2009-09-291-6/+7
| | | | relative paths in @INC don't work.
* Move the implementation of ./perl -V to Internals::V and Config::_VNicholas Clark2009-09-292-83/+128
| | | | | | Previously it was a Perl program generated by code embedded in perl.c, with conditional compilation logic, hence a combination of C pre-processor, C and Perl.
* Only require File::Spec::Functions on Win32, as only it needs rel2abs().Nicholas Clark2009-09-291-2/+6
| | | | | This seems easier than changing @INC so that it loads, but causing all other platforms to have to load a module they don't need.
* Put a watchdog on openpid.t: it has been found to hang in some Win32 smokes.Steve Hay2009-09-291-1/+1
|
* Fix distclean on Win32Steve Hay2009-09-293-31/+39
| | | | | | | | | | | | nmake realclean in the Encode sub-dirs didn't work because it needed an extra ../ on the relative paths in @INC. Make the paths absolute instead. nmake realclean in DynaLoader didn't work either because it tried to make DynaLoader.c... three times. Move the loop over @ext out of the loop over @dirs to fix the repetitions, but don't add DynaLoader.c anyway when just making a 'clean' target. Also clean up the XSLoader.pm that gets left behind.
* Move XSLoader from ext/ to dist/Nicholas Clark2009-09-296-4/+4
|
* Move threads::shared from ext/ to dist/Nicholas Clark2009-09-2924-23/+23
|
* Move threads from ext/ to dist/Nicholas Clark2009-09-2928-27/+27
|
* Move Thread::Semaphore from ext/ to dist/Nicholas Clark2009-09-296-5/+5
|
* Move Thread::Queue from ext/ to dist/Nicholas Clark2009-09-2911-10/+10
|
* Move Switch from ext/ to dist/Nicholas Clark2009-09-2911-10/+10
|
* Move SelfLoader from ext/ to dist/Nicholas Clark2009-09-295-4/+4
|
* Move Safe from ext/ to dist/Nicholas Clark2009-09-2914-14/+14
|
* Move Pod::Plainer from ext/ to dist/Nicholas Clark2009-09-294-3/+3
|
* Move Net::Ping from ext/ to dist/Nicholas Clark2009-09-2919-18/+18
|
* Move Module::CoreList from ext/ to dist/Nicholas Clark2009-09-2914-14/+14
|
* Move lib from ext/ to dist/Nicholas Clark2009-09-296-5/+5
|
* Move IO from ext/ to dist/Nicholas Clark2009-09-2938-36/+36
|
* Move I18N::LangTags from ext/ to dist/Nicholas Clark2009-09-2915-14/+14
|
* Move Filter::Simple from ext/ to dist/Nicholas Clark2009-09-2913-13/+13
|
* Move ExtUtils::Install from ext/ to dist/Nicholas Clark2009-09-2916-15/+15
|
* Move Data::Dumper from ext/ to dist/Nicholas Clark2009-09-2912-11/+11
|
* Move constant from ext/ to dist/Nicholas Clark2009-09-294-3/+3
|
* Move base from ext/ to dist/Nicholas Clark2009-09-2919-19/+19
|
* Use a non-development version for Cwd because XSLoader tests don't like thoseSteffen Mueller2009-09-291-1/+1
|
* Add Cwd/PathTools to mkppport.lstSteffen Mueller2009-09-291-0/+1
|
* remove Cwd/PathTools Makefile.PL from coreSteffen Mueller2009-09-292-8/+0
|
* Upgrade to PathTools 3.30_02 (with only core reorganization fixes)Steffen Mueller2009-09-294-17/+5
|
* Move Cwd from ext/ to cpan/Nicholas Clark2009-09-2933-36/+37
|
* Fix when( scalar ... ) bugJosh ben Jore2009-09-282-1/+14
| | | | | | | | looks_like_bool should look past scalar(). Prior to this fix, saying scalar() caused the when() argument to be /not/ a boolean even if it reasonably was. Perhaps something like: when( scalar /$re/ ). I don't know any natural way someone is doing to use when(scalar ...) but it certainly seems like it was mistakenly left out.
* Fix bad generated pod for last entries in perl{var,func}ikegami2009-09-281-0/+2
|
* With Win32 now building DynaLoader in ext, it is now built withSteve Hay2009-09-281-1/+1
| | | | | | -noprototypes (as was always the case on *nix), so no need to explicitly disable prototype checking in DynaLoader.t any more, i.e. we can revert a2c4b2d6db383103b96e4733616b17d0a3bb0bd9
* Fix maintainers.t on Win32 with Borland compilerSteve Hay2009-09-281-2/+2
| | | | | | Borland's C run-time thinks that glob patterns with * and ? characters are files or directories. There are no files or directories in the perl source containing those characters, so give it a helping hand when using -f or -d.
* Check that sparse files hold at least a block (bug in eCryptfs: ↵Leon Brocard2009-09-281-1/+2
| | | | https://bugs.launchpad.net/ecryptfs/+bug/390833)
* Update to check all URLs in the source, including ftp and ignore known ↵Leon Brocard2009-09-281-58/+349
| | | | example URLs
* Move Attribute::Handlers from ext/ to dist/Nicholas Clark2009-09-2823-23/+23
|
* config_sh.PL need to scan dist/ as well as cpan/ and ext/Nicholas Clark2009-09-281-0/+1
|
* With Win32 now building DynaLoader in ext, no need for the XSUBPP macro.Nicholas Clark2009-09-272-12/+0
| | | | Commit 281da5eaa82c5522 didn't realise that this could and should be removed.
* Make makedef.pl build the command line from its own @INCMax Maischein2009-09-271-4/+2
| | | | | | | | | Attached is a patch that cleans up the code in makedef.pl that I added, like Merijn suggested. -max Signed-off-by: H.Merijn Brand <h.m.brand@xs4all.nl>