This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Move Safe from ext/ to dist/
[perl5.git] / ext / ExtUtils-MakeMaker / Changes
1 6.55_02  Wed Aug  5 00:36:36 PDT 2009
2     Feature Changes
3     * PREFIX now applies to relative directories.  This is a change since
4       6.20 when they were ignored.  Its necessary for relocatable Perls.
5
6     VMS
7     * Refactoring of "MakeMaker Parameters" section in 6.55_01 broke VMS.
8       (Craig Berry)
9
10
11 6.55_01  Tue Jul 14 15:53:30 PDT 2009
12     Test Fixes
13     * The tests got a bit overzealous and removed the LIB environment variable
14       while is necessary for some compilers to work. [rt.cpan.org 47722]
15       (Jan Dubois)
16     * Another fix for arch_check() on Windows changing how we normalize
17       long and short filenames. [rt.cpan.org 47723] (Jan Dubois)
18
19     New Features
20     * BUILD_REQUIRES is added, similar to PREREQ_PM but for modules which
21       are necessary to build, but not run, your module. (Alexandr Ciornii)
22
23
24 6.54  Tue Jul  7 16:48:22 PDT 2009
25     Test Fixes
26     * Added perl core boilerplate code to a few new tests which were missing
27       them.
28
29
30 6.53_03  Thu Jul  2 14:47:45 PDT 2009
31     Bug Fixes
32     * You'd get a warning if you had a PREREQ_PM on a module with no $VERSION
33       like Config (broken in 6.51_01) [rt.cpan.org 47448]
34
35     Test Fixes
36     * Upgrade the version of Test::More we ship with to 0.88.
37     * Fix MM_Cygwin.t for older Perls missing Cygwin::win_to_posix_path()
38       broken in 6.53_01.
39     * Fix miniperl.t for Windows.  Our method of shutting off XS didn't
40       work for Win32.pm
41     * Old versions of version.pm, like what ships with OS X, dent Foo->VERSION
42       causing prereq.t to fail.  [rt.cpan.org 47296]
43     * Add missing core test boilerplates
44       [blead e39d780342f3e91579069fdc80eda72bfe639ae7]
45
46
47 6.53_02  Sun Jun  7 19:24:56 PDT 2009
48     Test Fixes
49     * Stray use of Shell::Command broke older perls
50
51     Other
52     * MakeMaker will now automatically test itself with multiple
53       perl versions before releasing.
54
55
56 6.53_01  Sun Jun  7 19:02:20 PDT 2009
57     Bug Fixes
58     * blib will now be rebuilt if the Makefile is changed
59       [rt.cpan.org 46658]
60     * 6.52 broke the setting of EXTRALIBS, LDLOADLIBS and BSLOADLIBS
61       when $self->{LIBS}[0] is undefined.
62       [rt.cpan.org 46633] (Craig Berry)
63
64     Cygwin
65     * Fixed MM_Cygwin.t when the path prefix (ie. cygdrive) has been
66       changed by the user. [rt.cpan.org 46585] (JDHEDDEN)
67
68     VMS
69     * Removed attempts to compensate for the "bin" logical added
70       by some versions of GNV, Craig says they're futile.
71       Put a warning into the Makefile.PL instead.
72       [rt.cpan.org 46679] (Craig Berry)
73     * Removed the arch_check() special case for VMS.
74       [rt.cpan.org 46678] (Craig Berry)
75
76     Win32
77     * Restore building the core by not trying to load the Win32
78       module in arch_check() with miniperl.
79       [rt.cpan.org 46667] (Max Maischein)
80
81     Tests
82     * Forgot to get rid of the tests for bytes and vmsish
83       which were removed in 6.51_01.
84     * Stopped running a Windows specific arch_check.t test
85       on non-Windows. (Craig Berry)
86       [rt.cpan.org 46678]
87
88
89 6.52  Sat May 30 11:22:04 PDT 2009
90     Docs
91     * Documented CONFIGURE_REQUIRES (Alexandr Ciornii)
92     * Modernized the docs for PREREQ_PM
93
94
95 6.51_04  Sun May 24 14:04:11 PDT 2009
96     Other
97     * All work on INSTALLHTML* has been reverted pending a fix for
98       [rt.cpan.org 45600]
99
100
101 6.51_03  Sat May 23 22:38:26 PDT 2009
102     Bug Fixes
103     * Building *.C files was broken in 6.37. [rt.cpan.org 45557]
104       Thanks to Rajesh Mandalemula for spotting it.
105     New Features
106     * Optional parameter CONFIGURE_REQUIRES was added, to control
107       this section in META.yml (Alexandr Ciornii)
108
109
110 6.51_02  Mon Apr 13 21:19:56 PDT 2009
111     Bug Fixes
112     * Fix a minor bug with the new PERM_DIR stuff which caused EUI to think
113       PERM_DIR was an install skip file.
114     * A Win32 function call in the last alpha broke Win32 builds.
115
116
117 6.51_01  Fri Apr 10 14:30:27 PDT 2009
118     New Features
119     * Module installation will not be stopped by a broken Pod::Man.
120       Man pages will just not be installed.
121       [rt.cpan.org 43546] (Jesse Vincent)
122     * vim swap files, *.swp, will now be ignored by MakeMaker.
123     * Added PERM_DIR to control permissions on directories.
124       [rt.cpan.org 3927] (Rajesh Mandalemula)
125
126     Feature Changes
127     * Modules in PREREQ_PM are no longer loaded in order to figure out
128       their version.  parse_version() is used instead.
129       [rt.cpan.org 44646]
130     * PPD files generated with "make ppd" now use the new REQUIRES key
131       rather than the now deprecated DEPENDENCY.
132       [rt.cpan.org 25179] (GAAS)
133     * PPD files no longer contain the deprecated OS tag.
134     * fixin is a bit less restrictive allowing things like 
135       #!perl5.8.8 and #!perl-debug [rt.cpan.org 29442]
136     * Remove the unused perm_rw() and perm_rwx() methods.
137
138     Bug Fixes
139     * On 5.10 "make ppd" would generate the wrong ARCHITECTURE saying the
140       version is 5.1 instead of 5.10.
141     * Our pod2man emulation now requires an argument to --perm_rw.
142       [rt.cpan.org 35190] (imacat)
143     * DISTVNAME was documented as a WriteMakefile() param but you'd
144       get a warning if you tried to use it.  [rt.cpan.org 43217]
145     * Better support for parallel make installs.
146       [rt.cpan.org 32758] (Brendan O'Dea)
147     * parse_version() will now skip uses of $VERSION in conditions
148       [rt.cpan.org 9452] (jc@unser.net)
149     * The architecture mismatch warning could show up on Win32 due
150       to long vs short filenames being used to compare.
151       [rt.cpan.org 33532] (DAGOLDEN)
152     * maybe_command() will recognize Windows executables in
153       /cygdrive on Cygwin [rt.cpan.org 16375] (PJF)
154     * parse_version() will now look for the first use of $VERSION
155       that results in $VERSION being set.
156
157     Test Fixes
158     * basic.t will not leave a "bin" environment variable defined on VMS.
159       [rt.cpan.org 42150] (John E. Malmberg)
160     * Made the tests work ok on systems whose makes assume that files which
161       have the same mod time are out of date.  This is often the case for
162       the tests which generate files and run make rapidly.
163       [rt.cpan.org 29955] (Ken Hirsch)
164     * skip test numbers were wrong on VMS in t/basic.t
165       [rt.cpan.org 43511] (John E. Malmberg)
166
167     Portability
168     * Removed a few hard coded uses of the "false" command.
169       [rt.cpan.org 44504]
170
171     VMS
172     * Fixed a few calls to catfile() that should be catdir().
173       (John E. Malmberg)
174     * Override catdir() and catfile() to expand macros.  This is normally done
175       inside File::Spec::VMS but is really a MakeMaker-only thing.
176       (John E. Malmberg)
177
178     Other
179     * Remove ExtUtils::MakeMaker::bytes and vmsish which are unused and
180       seem to never have been used.
181     * Repository now on github.
182
183
184 6.50  Sun Mar 22 12:28:06 PDT 2009
185     Windows    
186     * Remove the special checks for compilers that need a "manifest".  Instead,
187       the code will just be a no-op if there's no manifest.  Or something.
188       I dunno, I'm hoping Jan and Steve know what they're doing.
189       [rt.perl.org 61492]
190
191
192 6.49_01  Thu Feb 19 17:06:36 PST 2009
193     New OS Support
194     * Recognize "Haiku", a resurrection of BeOS.
195
196     New Features
197     - META.yml now includes ExtUtils::MakeMaker in build_requires by
198       default.
199
200     Test Fixes
201     - ExtUtils::Install 1.51 changed its output breaking some tests that
202       were looking for /^Writing/ [rt.cpan.org 42927]
203
204     Bug Fixes
205     - Upgrade bundled modules:  ExtUtils::Install 1.52, ExtUtils::Command
206       1.16, ExtUtils::Manifest 1.56.
207
208     Other
209     - The MakeMaker repository moved slightly.  Changed the metadata to
210       reflect this.  [rt.cpan.org 41571]
211
212
213 6.48  Mon Oct 20 11:18:13 PDT 2008
214     Test Fixes
215     * Protect against stray environment variables effecting the tests.
216       [rt.cpan.org 14930]
217
218
219 6.47_02  Thu Oct 16 16:14:20 PDT 2008
220     Test Fixes
221     * MIN_PERL_VERSION test had some goofs on VMS. [thanks Craig Berry]
222
223
224 6.47_01  Tue Oct 14 12:38:05 EDT 2008
225     New Features
226     * Added optional parameter MIN_PERL_VERSION, to define minimal
227       required perl version for dependency checks and to pass on to
228       META.yml and ppd files.        [rt.cpan.org 28374]
229       Thanks to David Golden, Alexandr Ciornii (chorny) and Martin Becker
230
231     Bug Fixes
232     * Guard against a path to Perl with a space in it.
233       From Max Maischein.  [bleadperl@32905]  
234
235     Test Fixes
236     - Small fix for VOS from Paul Green [bleadperl@33259]
237
238     Other
239     * $ExtUtils::MakeMaker::Revision, $ExtUtils::MM_Unix::Revision and 
240       $ExtUtils::MM_VMS::Revision are all now based on $VERSION.  You
241       shouldn't be using them for anything anyway.
242
243
244 6.46  Sat Sep 27 17:34:03 EDT 2008
245     Bug Fixes
246     - Fix META_MERGE for more than one level of hashes.  [rt.cpan.org 39348]
247
248
249 6.45_02  Sun Sep  7 13:59:14 PDT 2008
250     Bug Fixes
251     - Updated bundled ExtUtils::Command to 1.14, ExtUtils::Install to
252       1.50 and ExtUtils::Manifest to 1.54
253
254     Test Fixes
255     - t/writemakefile_args.t had the wrong skip amount causing failures
256       when run without version.pm (mostly 5.6 users)
257
258
259 6.45_01  Sat Sep  6 03:19:03 PDT 2008
260     New Features
261     * META_ADD and META_MERGE have been added to manipulate the META.yml.
262       Thanks to Adriano Ferreira.                       [rt.cpan.org 21282]
263     - META.yml now includes configure_requires ExtUtils::MakeMaker by
264       default.                                          [rt.cpan.org 32337]
265     - META.yml now excludes t/ and inc/ from indexing by default.
266     - META.yml license is now "unknown" instead of undef if a LICENSE is not
267       given.
268     - META.yml now conforms to version 1.4 of the spec.
269
270     Bug Fixes
271     - Make @MM_Sections and @Overridable global again.  It's an undocumented
272       but used way to manipulate MakeMaker behavior. [rt.cpan.org 36047]
273
274     Portability
275     * Changed the name/dmake test in MM_Win32.pm to use regexs to that
276       they are able to handle Perl on a Stick absolute paths.
277
278
279 6.44  Thu Feb 28 16:06:04 PST 2008
280     Bug Fixes
281     * Updated bundled ExtUtils::Install to 1.45 which should fix some
282       Cygwin issues. [rt.cpan.org 33291]
283
284
285 6.43_01  Tue Jan  1 16:06:47 PST 2008
286     Bug Fixes
287     * Change the "is this really a Perl core library directory" checks to
288       look for strict instead of Exporter.  Now that Exporter is on CPAN
289       it can wind up in site_perl.
290     * split_command() will now set aside a little more space for macro
291       expansion.  This should help on systems with cramped command line
292       lengths.  Specifically, Pugs on Win32.  [rt.cpan.org 20145]
293
294     Installation
295     * MakeMaker would not install if the installed MakeMaker was too old,
296       like on 5.6.1.  The installation process was still using the
297       installed MakeMaker in a few places.  This has been fixed.
298       [rt.cpan.org 24746]
299
300     OS X
301     * "make dist" will no longer bundle up resource fork files (._foo).
302       [rt.cpan.org 29525]
303
304     Docs
305     * The documentation of VERSION_FROM was recommending vstrings (1.2.3)
306       which have never worked right.
307     * The documentation for the accepted values of LICENSE moved to
308       Module::Build::API. [rt.cpan.org 32020]
309
310     Tests
311     * The compilation test was testing the installed modules, not the
312       about-to-be-installed.
313     * xs.t would fail if ExtUtils::CBuilder was not installed.
314     
315     Misc
316     * Cleanups brought to you by no more 5.5 compatibility!
317     * MakeMaker is now perlcritic clean at severity level 5... except
318       the really silly ones.
319     * DIE use vars DIE!
320     * Added some resources to the META.yml
321
322 6.42  Fri Dec  7 17:00:14 PST 2007
323     Bug Fixes
324     - 6.33 moved PREREQ_FATAL to happen after CONFIGURE.  This meant if
325       your CONFIGURE use a prereq it would fail and no PREREQ_FATAL
326       message would be displayed.
327     - Put the "nicetext" functionality back, VMS needs it to deal with
328       other people's custom make.  But rename it to the more
329       accurate maketext_filter(), test it and fix a bug where it would
330       stop processing if it saw a macro declaration.
331
332 6.40  Thu Dec  6 03:00:47 PST 2007
333     Bug Fixes
334     - Remove the dubious nicetext() Makefile formatting hack to account for
335       a lack of space between the target and colon needed on VMS.  This
336       interfered with META.yml creation on VMS and possibly other output.
337     - Fix the remaining targets which don't have a space between the target
338       and the colon.
339
340 6.38  Wed Nov 28 16:01:12 PST 2007
341     Releasing 6.37_03 as 6.38.
342
343 6.37_03  Mon Nov 26 14:15:34 PST 2007
344     Tests
345     - parse_version.t had wrong test count when version.pm isn't installed.
346     - Fixed some warnings in the XS module we're using for testing.
347     - "our $VERSION" test in parse_version.t was never running
348     - Quoting uses of 1.2.3 style versions in parse_version.t to protect
349       older perls.
350
351     Portability
352     - Moved the minimum required version up to 5.6.0.
353
354 6.37_02  Sun Nov 25 23:33:14 PST 2007
355     Test Improvements
356     - Added a test for a basic XS build.
357
358     Bug Fixes
359     - A refactoring in 6.37_01 broke XS compilation.
360
361 6.37_01  Sun Nov 25 17:05:53 PST 2007
362     Improvements
363     - Upgraded the META.yml to version 1.3 of the spec (which really
364       doesn't change anything).  Thanks bdfoy.
365     - MakeMaker now always includes the required 'author' field in 
366       the META.yml even if it's undef to comply with the META.yml spec.
367     - Updated ExtUtils-Install to latest version (1.44)
368     - Unified the version numbers of all modules.
369
370     Test Fixes
371     - cd() test on VMS used non-native paths. [bleadperl 31534]
372     - Removed uses of "no_plan" in tests to remain compatible with
373       old versions of Test::Harness.
374     - writemakefile_args.t had the wrong test count if version.pm isn't
375       installed.
376
377     Bug Fixes
378     - $VERSION detection code would be confused by "sub version"
379       [rt.cpan.org 30747]
380     - LINKTYPE=static will now be propagated to child builds.
381       [bleadperl 31761]
382
383     Portability Fixes
384     - Add "dragonfly" to the list of BSDish operating systems
385     - BSD detection code would not pick up bsdos or internix
386     - Fix detection of shared libperl on NetBSD [bleadperl 31526]
387
388
389 6.36  Tue Jul  3 01:06:40 PDT 2007
390     Test Fixes
391     - version.pm prior to 0.7203 caused Foo->VERSION to reformat
392       $Foo::VERSION.  This caused prereq.t to fail.
393
394 6.35  Sun Jul  1 20:53:38 PDT 2007
395     New Features
396     * MakeMaker will now try to "use version" before parsing $VERSION.
397       This allows "$VERSION = qv(1.2.3)" to work.
398
399     Test Fixes
400     - writemakefile_args.t now works with older versions of version.pm
401
402 6.34  Sat Jun 30 11:06:54 CDT 2007
403     Test Fixes
404     - Accidentally hard coded the version of strict.pm [rt.cpan.org 27838]
405
406 6.33  Fri Jun 29 17:15:34 CDT 2007
407     New Features
408     * VERSION now accepts version objects without warning.
409       [rt.cpan.org 26075]
410
411     Bug Fixes
412     - Properly not installing MANIFEST.SKIP when ExtUtils::Manifest is not
413       being installed. [rt.cpan.org 21318]
414     - fixin() no longer clobbers $/ [rt.cpan.org 26234]
415     - Fixed bug finding cross-compiled perls [bleadperl 31404]
416     - Looking up to 8 levels up to find uninstalled perls
417       [bleadperl 30932]
418     * A test failure in a sub-project would not cause "make test" to
419       fail. [rt.cpan.org 27804]
420
421     Windows
422     - Embed manifest files in EXEs and DLLs when building with VC++ 8.x
423       [bleadperl #29266] [rt.cpan.org 26208]
424     - Improved the subdir command code so DIR can do more than one level
425       down. [rt.cpan.org 25180]
426     - Fix static builds on Win32 by using -DPERLDLL [bleadperl 31229]
427
428     VMS
429     - Use linker flags rather than compiler flags to determine if the
430       perl sharable image was linked debug.  This keeps OPTIMIZE from
431       confusing things. [rt.cpan.org 25268]
432     - Accidental use of $\ in a regex. [bleadperl 30521]
433
434     BSD
435     - If calling perl causes MakeMaker to emit warnings, then it
436       cannot find the location of its binary. [rt.cpan.org 23178]
437
438     Doc Improvements
439     - Typo fixes.  $(TOUNIX) -> $(TO_UNIX).  [rt.cpan.org 23495]
440     - The example for setting $VERSION from $Revision$ in SVN was
441       incorrect. (Thanks to ROBERTMAY@cpan.org) [rt.cpan.org 26995]
442     - Document what's wrong with PREFIX and what to use instead.
443       [rt.cpan.org 12919]
444     - Improve the PREREQ_FATAL docs to make it really clear that you
445       do NOT want to use this!
446
447     Misc
448     - Provide information during the install about whether we're using the
449       installed or provided dependency (ie. ExtUtils::Command).
450     - Updated included versions of ExtUtils::Manifest and Command.
451     - Add .bak and .old to veryclean [rt.cpan.org 21284]
452     - Improved the PREREQ_FATAL message.
453
454 6.32  Wed Feb 21 07:59:57 PST 2007
455     New Features
456     - WriteEmptyMakefile() is now exportable upon request.
457     
458     Bug Fixes
459     - Set binmode() when writing to files in Command.t for operating
460       systems which need that sort of thing.  [bleadperl #29578]
461     - Fixed a minor duplication in manifypod_target().  [rt.cpan.org 22149]
462
463     Test Fixes
464     - The build_man.t test would fail if your Perl is configured to not
465       generate man pages ($Config{installman3dir} is set to none).
466
467     Doc Improvements
468     - Made the home dir install examples a little more friendly to non-Unix
469       folks.
470
471     Misc
472     - miniperl no longer has the Win32 functions.
473     - Turn on "use strict" where it was missing.
474
475 6.31  Mon Oct  9 16:54:47 PDT 2006
476     - Update our META.yml to version 1.2 of the spec.
477     * Update the SEE ALSO to mention Module::Build, Module::Install,
478       ExtUtils::ModuleMaker and Module::Starter.
479     - Fix ARCHITECTURE tag in PPD generation for 5.8 (patch taken from
480       ActiveState 819). [rt.cpan.org 20566]
481     * Bring ExtUtils::Manifest up to 1.48
482
483 6.30_04  Mon Sep 11 16:14:06 EDT 2006
484     - EXTRA_META has been undocumented as I don't like the way the
485       interface works but I don't want to hold up 6.31.  It will be
486       replaced with something better next version.
487     - Added explaination of distclean behavior and instructions on how to
488       blow away anything not in the MANIFEST to the FAQ.
489     * 6.30_01 broke overrides of PM.  MakeMaker would add to a user
490       suplied PM rather than simply accepting it.
491     * Document INSTALL_BASE.
492     * Added "How do I install a module into my home directory?" to the FAQ
493     * Added "How do I get MakeMaker and Module::Build to install to the
494       same place?"
495     - Moving ExtUtils::Mksymlists and ExtUtils::Mkbootstrap back into
496       lib/ because no independent distribution has taken them over.
497
498 6.30_03  Fri Sep  1 17:03:11 EDT 2006
499     - Minor fix to Command.t for Win32.
500
501 6.30_02  Fri Sep  1 15:03:55 EDT 2006
502     - Updated to ExtUtils::Install 1.41
503     * Won't scan for and build man pages when MAN3PODS is deliberately set
504       empty.
505     - Minor VMS fixes. [bleadperl@26813]
506     - VMS->one_liner must quote "--" argument. [bleadperl@27613]
507     * Split INSTALLSCRIPT into INSTALLSCRIPT, INSTALLSITESCRIPT and
508       INSTALLVENDORSCRIPT so it now honors INSTALLDIRS. [bleadperl@26536]
509     - Minor fix to work with Pod::man 2.04. [bleadperl@26457]
510     - $Revision was broken.
511     - Updated our internal version of Test::More to catch a few warnings.
512     - ExtUtils::Command::test_f() test was broken.
513     - Clarified that test_f() exits.
514
515 6.30_01  Tue Aug 16 23:53:27 PDT 2005
516     * Fixed compiling modules using an uninstalled Perl on Win32 by using
517       the proper perl header location for Windows (which is different from
518       Unix).  Looks like a very old bug.  [bugs.perl.org 36128]
519     - $ExtUtils::MakeMaker::Revision accidentally left in a stray "Revision".
520       [thanks pdx.pm for noticing this]
521     - Fixed the $VERSION = $Revision$ example in the MakeMaker docs and the
522       FAQ. [thanks again, pdx.pm]
523     - Elaborated on the differences between CVS, SVN and others when using
524       $Revision$ based $VERSIONs.
525     * ExtUtils::Command, ExtUtils::Install, ExtUtils::Manifest,
526       ExtUtils::Mkbootstrap, ExtUtils::Mksymlists and ExtUtils::Packlist
527       are all now considered to be separate distributions.  To avoid a 
528       circular dependency, MakeMaker distributes its own versions but CPAN 
529       should not index them and they will not overwrite a newer, installed 
530       version.
531     * Added EXTRA_META option to allow module authors to append extra
532       text to the generated META.yml.
533     * Added a LICENSE field mirroring Module::Build's license.
534     * META.yml support updated to version 1.1.  All required fields
535       now generated.  (NOTE: 1.1 isn't yet complete but we're going with
536       it anyway.  MakeMaker uses "author" instead of "authored_by" as its
537       expected the former will be used in 1.1 final).
538     * Non-conforming version_from and installdirs META.yml fields removed.
539     * META.yml distribution_type field now intelligent enough to guess at
540       the type rather than hard code 'module'.
541     * INSTALLBASE changed to INSTALL_BASE to match Module::Build.
542     * Added a MAKE parameter for Windows users to say if they're using
543       dmake or nmake.
544
545 6.30  Fri May 20 16:05:38 PDT 2005
546     * PL_FILES behavior tweak again to restore old behavior.  Sometimes its 
547       supposed to run before pm_to_blib, sometimes after.
548     - Some tests shipped with 'no_plan' which will break on older 
549       Test::Harness.
550
551 6.29  Thu May 19 14:15:21 PDT 2005
552     * The behavior of PL_FILES is restored to its pre-6.26 behavior as several
553       CPAN modules depend on this.  PL programs run via PL_FILES have 
554       INST_LIB and INST_ARCH in their @INC and so can load any just built 
555       modules.
556     - Now honors PERL_CORE environment variable.
557     - Testing to ensure FIRST_MAKEFILE is honored.
558
559 6.28  Tue Apr 12 16:17:07 PDT 2005
560     - Fix realclean so it cleans up files installed from ext/ in the core
561     - Fix dir_target() so it doesn't warn should any of the INST_* paths
562       be the same (as with the ext/ modules in the core)
563     - Fix MANIFEST.SKIP so it skips not just _darcs/ but everything inside
564       it and any which happen to be in subdirs.
565     - MM_AIX forgot to import neatvalue() from E::MakeMaker. 
566       (bleadperl@24185)
567     - Fixed a minor C<<>> POD nit (Scott Lanning)
568
569 6.27  Mon Apr  4 16:36:14 PDT 2005
570     * Added _darcs to the list of revision control administrative 
571       directories skipped both in libscan and in MANIFEST.SKIP.
572
573 6.26_01 Mon Mar 28 21:34:39 PST 2005
574     * PL_FILES was broken in the last release.  The .PL files were not being
575       passed the file they were to generate.
576     * How PL_FILES runs the programs and what it does with the value is 
577       now documented.
578     * The default behavior of PL_FILES is now documented.
579
580 6.26  Mon Mar 21 20:36:22 PST 2005
581
582 6.25_12 Fri Mar 18 16:15:35 PST 2005
583     - Use the generic dmake search.cpan.org URL in the README so the newest
584       version is found.
585     - Fixed pm_to_blib trouble on VMS introduced in 6.25_10.
586
587 6.25_11 Tue Mar 15 02:00:20 PST 2005
588     - Fixed minor parent class dependency loop in ExtUtils::MM_Any.
589     - Fixed a circular dependency on processed PL files introduced as part
590       of RT 6460 in 6.25_02.
591
592 6.25_10 Sun Mar 13 16:14:04 PST 2005
593     - pm_to_blib.ts is gone, back to pm_to_blib (except on VMS).  I 
594       couldn't make it work and still retain backwards compatibility.
595       This fixes the recompilation problems that plagued _09 and various
596       previous alpha releases.
597
598 6.25_09  Sat Mar 12 10:10:34 PST 2005
599     - Stubbing out PASTHRU on VMS.  $(MMSQUALIFIERS) should do the equivalent
600       and better.
601     - Added test to check for the existence of a compiler so XS tests are
602       now possible.
603
604 6.25_08  Tue Feb  8 09:04:36 EST 2005
605     - Fixing xsubpp on VMS.  Had a foo/bar path in it.
606     - Turning XSUBPP into a runable command by the addition of PERLRUN
607       made it unusable as a dependency.  Added XSUBPPRUN for that and left
608       XSUBPP alone.
609     - Removed DESTDIR from PASTHRU as install is not recursive and it can
610       make commands too long on VMS.
611     - Older versions of MMS cannot handle directory targets at all.  Using
612       .exists files everywhere.
613     - Restore missing *.Opt clean on VMS.
614     - Fix .exists files accidentally getting caught in static builds.
615     - Older versions of MMS cannot handle directory targets at all.
616     - Add Interix support (bleadperl@33892)
617     - distsign target changed to distsignature to avoid clash with
618       Module::Install
619
620 6.25_07  Fri Dec 31 03:47:20 EST 2004
621     - perllocal on VMS was inserting executables twice.
622     - No longer using $(IGNORE) macro.  Turns out MMS/K was not honoring
623       it.  Using "-$(NOECHO) command" which seems to make everybody happy.
624     - Executables with no extension weren't getting installed on VMS due to 
625       a bug in rename().  Broken sometime in this series of alphas.
626
627 6.25_06  Sun Dec 26 17:21:37 EST 2004
628     - Forgot to define BOOTDEP macro.
629     - .exists files are back.  Directories cannot be used directly as 
630       targets as their mod time changes too frequently.
631     * Added INSTALLBASE as an alternative to PREFIX but haven't documented
632       it yet.  I'll do that next release.
633
634 6.25_05  Wed Dec 22 07:59:02 EST 2004
635     - One of the 6.25 alphas broke BSD make.  It doesn't like "- @ command".
636       Fixed by adding an $(IGNORE) macro.
637     - 6.25 alphas caused a Makefile to be added to the dist.  Fixed.
638     - The new cd() code needed to be dependent on dmake or nmake for
639       Windows.  Not Win9x vs WinNT/XP.
640
641 6.25_04  Tue Dec 21 00:53:06 EST 2004
642     - 6.25_03 was always rebuilding XS modules.
643
644 6.25_03  Mon Dec 20 23:04:22 EST 2004
645     - dir_target() is back.  Now each directory to be created has its own 
646       target like before, but no more .exists or blibdirs.ts files.  This
647       ensures that each blib directory is created as necessary and fixes
648       things like SVN's perl bindings.
649
650 6.25_02  Mon Dec 20 03:31:49 EST 2004
651     - Set PM_FILTER as late as possible so it can see all the earlier
652       macro definitions.  Necessary for challenged make implementations
653       like nmake.  Should fix Mail::SpamAssassin installs on Win32.
654       [rt.cpan.org 4545]
655     - clean and realclean are now more careful about accidentally deleting
656       directories instead of files.  [rt.cpan.org 6851]
657     - small fix for parallel builds, make sure pm_to_blib has run before
658       we try to use stuff in blib. [rt.cpan.org 6460]
659     - MAKEFILE=foo appears to have been broken for recursive builds and
660       several other things.  I think this was broken by 6.18.
661
662 6.25_01  Fri Dec 17 21:29:04 EST 2004
663     * *.bak added to the default MANIFEST.SKIP.
664     * META.yml will no longer be generated in the build directory.  It will
665       only appear in the distdir.  This should make it easier on developers,
666       they don't have to worry about checking the file in all the time.
667     * Similarly, the SIGNATURE file will not be updated in the build 
668       directory.  It will only be generated in the distdir.
669     - A bunch of redundant Win9x and VMS code removed.
670     - 'make test' on Windows no longer pre-expands its list of test files.
671       This caused problems on large distributions like bioperl.  Thanks to
672       Tim Bunce for suggesting the obvious fix.
673
674 6.25  Wed Dec 15 06:59:46 EST 2004
675     - Build.PL was being considered like Module_pm.PL.  Build.PL is now 
676       ignored.  [radek@karnet.pl] [rt.cpan.org 8809]
677     - Devel::Cover cover_db/ directory now ignored by MANIFEST.SKIP
678
679 6.24_01 Thu Dec  9 00:44:48 EST 2004
680     - Docs encouraged possibly insecure use of /tmp [CAN-2004-0976 via Debian]
681     - Remove empty rpath from .so files [bleadperl@23183]
682     - At long last the core man page title has its apostrophe.
683     - BeOS tests fixed [Ingo Weinhold] [perlbug #32717]
684     - Putting a pm_to_blib target back (alias of pm_to_blib.ts) in case
685       anyone was depending on it being there (mod_perl was).
686
687 6.24 Tue Nov 30 15:35:13 EST 2004
688     - dir_target() was accidentally named dir_targets() causing problems
689       installing some Tk modules.
690
691 6.23 Fri Nov 26 16:01:50 EST 2004
692     - MM_MacOS lost its $VERSION causing some CPAN indexing problems.  Enough
693       people noticed this to warrant a quick release.
694
695 6.22 Tue Nov 23 22:22:22 EST 2004
696     - Minor glitch in Command.t test on Win32 [thanks Steve Hay]
697     * Fixed MANIFEST.SKIP so it avoids all the new *.ts files.
698     - Don't spuriously define pasthru arguments
699
700 6.21_03 Sat Apr 3 2004
701     - pm_to_blib and blibdirs stamp files now pm_to_blib.ts and blibdirs.ts
702       everywhere because some filesystems insist you have a dot in the 
703       filename.  This eliminates a bunch of special case code.
704     - Minor potential glitch in the version check logic.
705     - Making Makefile rebuild logic more resistant to inconsequential
706       errors when cleaning up things that are going to be rebuilt anyway.
707     - Adding SCCS to the list of directories in MANIFEST.SKIP.
708     * Fixing blibdirs so it doesn't rebuild every make run.
709     * Using a more conservative MAX_EXEC_LEN for Win98 to allow building
710       large modules like Encode. [Greg Matheson]
711     * test target mangled by dmake.  Doesn't seem to like q{}.
712       [Greg Matheson]
713     - instmodsh now using Archive::Tar to create archives if available.
714       [Slaven Rezic]
715     - instmodsh now using more portable tar flags to create archives.
716       [Slaven Rezic]
717     - Added FAQ entry for "How do I use a module without installing it?"
718       and "How do I keep from installing man pages?" [Joe Cromie]
719     - Fixed finding the default MANIFEST.SKIP if its on a different volume
720       [Ilya Zakharevich]
721     - When building Perl, we had a chance of picking up the old installed
722       xsubpp from @INC [Andreas Koenig]
723     - makeaperl() now a bit more intellegent about ignoring perl libraries
724       not called libperl.  [Ilya Zakharevich bleadperl@22032]
725     * MacOS Classic (MacPerl) is no longer supported.  Please use
726       Module::Build instead.
727     * Restored pm_to_blib.ts so pm_to_blib generation will be quiessent on
728       VMS. [rt 4675]
729     - For simplicity, dir_target() is now a no-op.  Should not effect any
730       existing uses.
731     - Converted utility commands from using $(PERLRUN) to $(ABSPERLRUN).
732       This allows distclean to work with SDBM_File. [rt 5616]
733     - realclean was using "rm -f" instead of "rm -rf" meaning directories
734       wouldn't be properly cleaned.  Caused by bleadperl@7952. [rt 5208]
735     - fixpath() could undo wraplist() on VMS [rt 4955]
736     - ensure ExtUtils::Command::rm_f deletes all versions of a file on VMS
737       [rt 4687]
738     - hint.t generating improperly named hint files on OS's where $^O
739       contains a '.'.  They should be converted to underscores.  Test
740       mistake, not a bug.  [rt 5365]
741     - Fixed ExtUtils::Command::chmod() so it will work on directories on
742       VMS. [rt 4676]
743     - parse_version.t was using no_plan causing trouble on older T::Hs.
744       [rt 5633]
745
746 6.21 Tue Nov 11 00:12:56 PST 2003
747     - NetBSD was looking in INSTALLARCHLIB/CORE for libperl instead of 
748       PERL_ARCHLIB/CORE.  Would cause problems if INSTALLARCHLIB was changed
749       (ie. LIB or PREFIX used). [Jochen Eisinger]
750     - Turns out a handful of modules use dir_target().  Restored a version
751       for backwards compatibility.
752     - Moved blibdirs target from top_targets() to its own section.  Lots of
753       modules rewrite top_targets() so blibdirs wouldn't be written.
754
755 6.20 Thu Nov  6 02:25:58 PST 2003
756     - Fixing dos2unix on Cygwin.  In-place editing doesn't work 100% so we
757       take a more conservative approach.
758     - Small postamble.t test temp file cleanup fix for Cygwin and Windows.
759     - Small Command.t test fix for 5.5.3.  No real bug [rt 4290]
760     - Small Liblist fix for Cygwin and import libraries [Gerrit P. Haase]
761     - metafile error message slightly mangled.  Bare $! mistake confusing 
762       nmake [rt 4285 4301]
763
764 6.19 Mon Nov  3 22:53:56 PST 2003
765     - Removed 00setup_dummy.t and zz_cleanup_dummy.t.  Tests now setup and
766       teardown the dummy modules as needed.
767     - Little test glitch on systems without $Config{usevendorprefix} set
768     - INSTALL(SITE|VENDOR)MAN*DIR now fall back to $(INSTALLMAN*DIR)
769       instead of copying its value.  This lets "perl Makefile.PL 
770       INSTALLMAN1DIR=/some/man/man1" work like expected.
771
772 6.18 Mon Nov  3 20:09:51 PST 2003
773     - parse_version() was blowing over $_ (Ilya Zakharevich)
774     - 5.6.2 has the same Cygwin shared lib name fix as 5.7.0. (Gerrit Haase)
775     * When $Config{install(site|vendor)man*dir} aren't set it will now
776       fall back to $Config{installman*dir}.  Similar for 
777       $Config{install(site|vendor)bin}.  This preserves behavior for older
778       Perls.
779     * Eliminated the dependency on perl.h for pure-perl builds.
780     * Eliminated .exists files.  Added blibdirs target using MKPATH instead.
781     - Removed now unused dir_target() method.
782     - Added a little documentation to instmodsh.
783     * Made sure PREFIX always has something in it.  Module authors like to use
784       it when extending MakeMaker.  Currently using one of 
785       PERL/SITE/VENDORPREFIX based on the value of INSTALLDIRS.
786     * Added SIGN to generate module signatures with cpansign (Autrijus Tang)
787     - Slight tweaks to MAKEFILE_OLD and MAKE_APERL_FILE restoring a mistake
788       made around 6.06 to fix static builds on OS/2
789     - Added ExtUtils::Command::dos2unix()
790     * manicopy() would make the copied files read-only if 'cp' was used.
791     * Fixed prereq check for modules which are also keywords like if.pm and
792       open.pm (Autrijus Tang)
793     - Made ExtUtils::Command mv and cp return whether or not they succeeded.
794     * metafile_addtomanifest now mentions what its doing.
795     * metafile will not die if it can't write to META.yml, just emit a 
796       warning.  This lets 'make dist' continue with a read-only META.yml
797     - Small fix to identify UWIN on NT (Randy Sims)
798     * metafile will not touch the META.yml if it does not need to be changed
799       (Thanks to Tim Bunce for this idea)
800     * Fixed 'make uninstall' which looks like its been broken since last
801       November and nobody noticed.
802     - Fixing minor bug in VMS prefixification logic when PREFIX was not set
803       by the user.
804     - Fixing potential bug in prefixification for relative directories
805     * Documented UNINST=1
806
807 6.17 Sun Sep 14 20:52:45 PDT 2003
808     - Fixing LD so it can be set properly on Win32. (Orton Yves)
809     * Fixing the init_PERL() "tack $Config{exe_ext} onto $^X" logic so 
810       it works on VMS allowing $^X to be found.
811     * Fixing make install UNINST=1 on Windows so it can search PERL5LIB
812       (Orton Yves)
813     - Fixing "could not open MANIFEST" test for OS/2 (and probably others) 
814       where a read-only file cannot be deleted.
815     - Hacking around the fact that when built for debugging, VMS creates
816       ndbgperl.exe.
817     - Eliminating the never implemented "help" argument.
818
819 6.16 Mon Aug 18 01:39:51 PDT 2003
820     * Fixing the max exec length for Windows to account for old
821       versions of nmake (the one you can download for free from MS).
822     - Hack to normalize //foo//bar paths in ExtUtils::Installed.
823       [Sreeji K Das]
824     * Adding Module::Build utility files to MANIFEST.SKIP
825     - PREREQ_PRINT is supposed to exit after dumping. (Wolfgang Friebel
826       bleadperl@20530)
827     - maniadd() was trying to open the MANIFEST even if it didn't need to
828       causing unnecessary errors for read-only MANIFESTs (rt.cpan.org 3180)
829
830 6.15 Sun Aug  3 16:41:05 PDT 2003
831     - Make FIXIN on Win32 use the new pl2bat rather than an already
832       installed one when building the core (Mattia Barbon)
833
834 6.14 Sun Aug  3 16:23:27 PDT 2003
835     - Adding a reference to the Module::Build META.yml spec in the META.yml
836       itself and the metafile documentation.
837     - Removed Begin/End comments from manifypods that were getting in the
838       way of users adding code to the manifypods target.
839     - Putting a POD2MAN macro back as an alias to POD2MAN_EXE and using
840       it instead of POD2MAN.  This allows people to generate their own man 
841       installation targets in a backwards compatible way.
842     * Adding reference to the Module::Build META file spec in the docs.
843
844 6.13 Thu Jul 31 16:48:01 PDT 2003
845     - Generated META.yml now has the prereqs in sorted order (Andy Lester)
846     - Arguments to child Makefile.PLs were still having .. prepended.  This
847       was exposed by the earlier fix of rt.perl.org 4345.
848     - extralibs.ld (for static builds) wasn't being cleaned up.
849
850 6.12 Tue Jul 29 22:19:38 PDT 2003
851     - Should any of your prefixes be /, MakeMaker might lose this and
852       prepend your prefix as "prefixyour/directory" rather than
853       "prefix/your/directory" (Ed Moy bleadperl 20283)
854     - Reversing "realclean was duplicating work already done by clean"
855       (CVS 1.124 MM_Unix.pm).  Turns out it wasn't a duplication and this
856       was causing INST_* files to be left behind if your INST_LIB wasn't
857       blib/* as in the perl core.  realclean now removes the files copied
858       to INST_*.
859     - Eliminating xsubpp_version().  No longer relevant.  It was checking
860       for a feature added to xsubpp before 5.003_07 and doing it in a
861       really bizarre way.
862
863 6.11 Thu Jul 24 01:24:37 PDT 2003
864     - Small grammatical doc touch up by Sean Burke
865     - Making basic.t clean up better after itself so it can be run
866       twice without setting up and cleaning up Big-Dummy again.
867     * Noting where to find make in the README
868     * Noting that MakeMaker does not produce a GNU make compatible Makefile
869       on Windows.
870
871 6.10_08 Mon Jul 21 18:17:06 PDT 2003
872     * $Config{installvendorman*dir} was being ignored and our default
873       always used. [rt.cpan.org #2949]
874     * Setting NORECURS to true was still resulting in a Makefile which
875       tried to recurse into subdirectories which contained a Makefile.PL
876       (it simply wouldn't have run them to generate Makefile's).
877       This appears to be a rather old bug.
878       [rt.cpan.org #2951]
879     * [rt.perl.org #4345] Arguments passed to WriteMakefile() would get
880       stopped upon by $self->{PARENT} in recursive builds in the process
881       of prepending a .. onto it.
882     - Command.t now using its own temp directory when testing 
883       expand_wildcards() so no stray files confuse it.
884     * No longer warning about 'postamble' attribute.
885     - Added installvars() to list INSTALL* variables so we don't keep
886       repeating the list all over the code.
887     - Added init_DEST() to create DESTINSTALL* variables for installing
888       with DESTDIR set.
889     * DESTDIR + PREFIX now does not duplicate DESTDIR.  [Redhat #91892
890       and part of rt.cpan.org #2954]
891     * DESTDIR is now not directly prepended to the INSTALL* variables.
892       installation targets now use DESTINSTALL* instead.  This prevents
893       the DESTDIR from showing up in places it shouldn't like perllocal.pod.
894       DESTDIR is still appearing in .packlist (bug). [rt.cpan.org #2954]
895     - MM_VMS->prefixify() wasn't honoring the %Config_Override causing
896       some MakeMaker generated config variables to be ignored.
897     - MM_VMS->prefixify() was only VMSifying part of its filepaths causing 
898       internal comparisions to get confused and think it had to prefixify 
899       when it didn't.
900
901 6.10_07 Sat Jul  5 16:12:52 PDT 2003
902     * Fixing location of perllocal.pod so its always in INSTALLARCHLIB
903       instead of one for each perl, site and vendor.
904     - Sun's make treats escaped newlines oddly.  Switching oneliner() back
905       to using multiple -e's.
906     * Bug in libscan() meant that any .pm containing RCS or CVS or SCCS
907       in its name (for example, RCS.pm) would be skipped.
908     - Command.t was getting confused in the core because it was reading
909       files from the core t/ directory, not MakeMaker's t/ directry.
910     - MM_OS2 PERL_ARCHIVE_AFTER test wrong for a.out systems (Ilya)
911     - Fixing perllocal.pod and XS installation on VMS.  An extraneous
912       newline was introduced when changing the install macros over to
913       $(ECHO).
914     - Added $(ECHO_N) macro to emulate 'echo -n'
915
916 6.10_06 Sat Jun  7 00:55:29 PDT 2003
917     - Whoops, Liblist.t busted on VMS after I turned strict on in
918       ExtUtils::Liblist::Kid.  Merely a test bug, not a real bug.
919     - Fixed metafile_addtomanifest failure so the proper error shows.
920     - Fixed metafile_addtomanifest failure diagnostic leaking out during
921       the basic.t test on Windows.
922
923 6.10_05 Fri Jun  6 18:15:30 PDT 2003
924     * Documenting META.yml, NO_META
925     * Documenting the fact that distdir will auto generate META.yml and 
926       alter your manifest.
927     * Adding META.yml autogeneration to the FAQ
928     - Recognizing comments with leading whitespace in MANIFESTs better.
929     - Small ExtUtils::Liblist::Kid problem on VMS (Craig Berry)
930     * Fixed "make install UNINST=1".  Appears to have been broken somewhere
931       around 6.06_01.
932     - Documented the fourth argument to ExtUtils::Install::install()
933     - install() will now honor a PERL5LIB change between ExtUtils::Install
934       loading and install() running when uninstalling shadows.
935     - META.yml generation deals gracefully when the MANIFEST is read-only
936       (Slaven rt.cpan.org 2723)
937     - Fixing tests on limited dir depth VMS systems by moving the 
938       dummy-install dir one level up (Craig Berry rt.cpan.org 2747)
939
940 6.10_04 Fri May 23 01:13:04 PDT 2003
941     - Working around BSD threaading bug in version check. [from bleadperl]
942     - Added the Makefile to the dist dependencies. (Slaven Rezic)
943     - Reversing the find_perl() version check failure warning introced in
944       6.10_03.  Too talkative, warned when nothing was wrong.
945     * Fixing META.yml auto-addition when there's no newline at the end 
946       of the MANIFEST [rt.cpan.org 2444]
947     * Making it a bit more obvious in the MANIFEST where META.yml comes from.
948     - Fixed $_ clobbering in ExtUtils::Manifest functions.
949     - [rt.cpan.org 2591] some LD_RUN_PATH thing (Marek Rouchal)
950     - Added core.\d+ files to 'make clean' [rt.cpan.org 2543] (Slaven Rezic)
951     - INST_* targets were expanded too early (Stas Bekman)
952     - Adding ExtUtils::MakeMaker::bytes (bytes.pm backwards compat wrapper)
953     - Fixing MM_MacOS so it will compile on 5.5.x machines (use bytes wrapper)
954     * Reducing perldepend set of CORE/*.h dependencies to what 5.5.3 has.
955       5.5.3 should be able to compile XS again.
956     * Eliminating fakethr.h and perlsfio.h from VMS's perldepend as they
957       sometimes don't get installed.
958     - ExtUtils::Install was making a few directories even with the
959       "don't really do it" switch on (Slaven Rezic)
960     * can build static linked perl binaries again.  Probably damaged in
961       6.06_01 when $self->{MAKEFILE} became FIRST_MAKEFILE. (Nick Clark)
962
963 6.10_03 Fri Apr 11 00:21:25 PDT 2003
964     * Added NO_META WriteMakefile() option to suppress generation of
965       META.yml. (Spoon, rt.cpan.org 2359)
966     - Spurious linebreak in uninstall_from_sitedirs on VMS (Craig Berry)
967     * A bit after 6.05 man page names would come out as lib::Foo::Bar
968       if the module name didn't contain a ::.  Found with podulators.
969       Fixed.
970     * Skipping installation of RCS ,v files.
971     * 'make ci' was busted between 6.05 and 6.06_01.  Fixed. (Andreas)
972     - 'make test' was broken when there's no tests.  Introduced in 6.06_03.
973       (Stas Bekman)
974     - Solving some directory depth problems in tests on oldish VMS systems.
975       (Craig Berry)
976     - Fixing MM_MacOS so it compiles on UTF-8 systems. (Jarkko)
977     - Making find_perl() more talkative when the version check fails
978       miserably.
979     - Fixing PERL_ARCHIVE on VMS so XS can compile again (Craig Berry)
980
981 6.10_02 Mon Apr  7 00:57:15 PDT 2003
982     * Removed 2>&1 experiment introduced in 6.10_01 for all non-Unixen
983       except for OS/2.  Thought Perl might emulate `... 2>&1`.  It doesn't.
984       Just on OS/2.
985
986 6.10_01 Sun Apr  6 19:31:42 PDT 2003
987     - Making install "Skip ... (unchanged)" message happen consistently
988     - Checking file sizes as well as modification times when deciding
989       to skip installing a file.
990     - OS/2 was using $(RM) instead of $(RM_F) (Ilya)
991     - OS/2 needs .dll removed on failed build (Ilya)
992     - fixin() was assuming that rename() can overwrite the target (Ilya)
993     - manifypods target was empty if there are no pods to manify.  Put in
994       at least $(NOECHO) $(NOOP)
995     - Cygwin test to check for finding pod2man when building the perl core
996       removed.  No longer relevent.
997     - Small fixes for dmake (Mattia Barbon)
998     * Added "Reporting bugs" section to the PATCHING doc.
999     - Minor bug in compile test missed ExtUtils::Liblist::Kid
1000     - Removing $(VERSION_FROM) from Makefile dependency.  It was too
1001       annoying to rebuild the Makefile every time the module changed.
1002       Mentioned it in the FAQ instead.
1003     - Fixing PERL_ARCHIVE macro on VMS.  Apparently it never appeared
1004       properly before. (Craig Berry)
1005     - Fixing ECHO on dmake.
1006     - Adding os_flavor() and os_flavor_is()
1007     - Making basic.t error output combine STDOUT & STDERR for easier 
1008       reading.
1009     * ExtUtils::Manifest will now work case insensitively.
1010     - Fixed 'subroutine redefined' warnings in 00compile.t
1011     - Fixed it so typemaps are only looked for in the perl core library.
1012     * Hacking around VMS filesystem problems reconstructing package names
1013       from filenames in ExtUtils::Installed.  (Jesper Naur)
1014
1015 # There was no 6.06, I jumped straight to 6.10_XX because there's been
1016 # so much change between 6.05 and now.
1017
1018 6.06_05 Mon Mar 31 02:44:11 PST 2003
1019     - Syncing into bleadperl.  Minor nits revealed...
1020     - AutoSplit open filehandle bug was fixed in bleadperl.  Averted a
1021       warning because of this.
1022     - hint files were only being loaded if . happened to be in @INC.
1023       A bug/feature of File::Spec was stripping off the current dir from
1024       the front of hintfile paths causing Perl to look for them in @INC.
1025       Worked around.
1026     - Now checking $! for errors if a hint file returns undef
1027     - compile test was testing all of perl!  Scaling back to just ExtUtils/
1028
1029 6.06_04 Sun Mar 30 20:34:39 PST 2003
1030     - Now looking for ExtUtils::xsubpp through @INC rather than just
1031       the perl core directories.  This helps ExtUtils::ParseXS.
1032     - Systems which don't put their libraries under their $Config{prefix}
1033       (OS X, Debian) weren't putting their libraries in the spot declared
1034       in Config.  It was going under $Config{prefix}.
1035     - Prerequisites check now deals better with X.Y_Z style alpha versions
1036     - ExtUtils::Liblist->ext() was using $Config{perllibs} which is a 5.6.1
1037       thing.  Falling back to $Config{libs} if perllibs isn't there.
1038     - ExtUtils::Command::MM now reads from @ARGV if called with no
1039       args.  Makes the one liner a bit simpler.
1040     * Restored ExtUtils::Liblist::ext() for backwards compatibility.
1041       Missing since 5.6.1.
1042     - Switching to relative dirs for self-building to shorten
1043       command line lengths.
1044     - Fixing minor test warning on VMS when compiling ExtUtils::Manifest
1045     - Skipping STDIN read prompt() tests on 5.5.3.  Can't test due to
1046       eof() not honor tied handles.
1047     - Config.pm on 5.5.3 doesn't have any concept of vendor*.  This was
1048       causing warnings when generating the Makefile.
1049
1050 6.06_03 Sat Mar 29 19:44:53 PST 2003
1051     - Added AUTHOR and ABSTRACT_FROM info to Makefile.PL for ppd generation.
1052     - Added echo() method to portably echo text to a file.
1053     - Worked around 5.8.0 eval 'require Foo::Bar' bug causing MakeMaker
1054       to think modules weren't installed.
1055     - Modernized VMS doc_*_install targets
1056     - Changed some $(PERL) -e "print ..." code to use $(ECHO).
1057     - Replaced uses of Delete/NoLog/NoConfirm with $(RM_F) in MM_VMS
1058     - Fixed some duplicate macros making MMS happy.
1059     - Fixed $ExtUtils::MM_VMS::Revision.  It was just the $VERSION before.
1060     - Fixed ExtUtils::Command::MM::perllocal_install(), uninstall(),
1061       warn_if_old_packlist().
1062     * Pulling File::Spec::VMS::fixpath() and eliminate_macros() into MM_VMS
1063       as the new cannonical location.  They never should have been in F::S
1064       in the first place.
1065     * ExtUtils::Command::eqtime() would truncate the file being equalized!
1066       Holdover from exclusive .exists usage.
1067     - Cleaned up hard coded 'echo' and '@' to $(ECHO) and $(NOECHO)
1068     - $(SAY) is now $(ECHO) on VMS
1069     - Moved rogue initializations from tools_other() to init_others()
1070     - Normalized MM_VMS's tools_other() to mostly use its superclass.
1071     - split_command() was off-by-one when calculating max command line
1072       lengths causing it to run over on VMS
1073     - made split_command() a bit smarter, taking into account some macro
1074       expansion
1075     - Fixed initialization of OBJECT, DISTNAME and LDFROM on VMS
1076     - Fixed *_install target uses of File::Spec.
1077     - Added ExtUtils::MakeMaker::vmsish wrapper around vmsish so MM_VMS
1078       can be compiled on non-VMS machines.  For testing.
1079     * Added ExtUtils::MakeMaker::Tutorial about writing modules with
1080       MakeMaker.
1081     - Removed "always use h2xs" dogma.
1082     - Added compile & POD test
1083     * 'make distdir' now generates META.yml module meta-data file.
1084       Proof of concept.  Have to syncronize with Module::Build.
1085     * Added maniadd() to ExtUtils::Manifest to add entries to the MANIFEST
1086     * ExtUtils::Command::chmod was not interpreting file permissions as
1087       octal.  Also, docs & tests slightly wrong (thanks Stas Bekman).
1088     - ExtUtils::Install was hard coding blib/lib and blib/arch, unportable
1089       [perl #21526]
1090
1091 6.06_02 Mon Dec 23 20:39:57 PST 2002
1092     * Lots of Win32 fixes busted between 6.05 and 6.06_01.  
1093     * split_command() tests still not happy on Win32.  Problems with
1094       shell vs Makefile escaping makes testing difficult.
1095     * VMS still broken.  Need to convert File::Spec method calls back to
1096       object method calls so the weird FS::VMS->eliminate_macros() and 
1097       fixpath() work again.
1098
1099 6.06_01 Thu Dec 19 00:14:49 PST 2002
1100     - Andreas found that when building the core it is desirable for
1101       MakeMaker to use a relative path to perl.
1102     - File::Spec->catfile() has a bug where the resulting file may not be
1103       canonicalized.  This was causing problems when generating manpaths.
1104       MakeMaker now uses its own fixed override for catfile().
1105     - Fixed the POD recognition regex to properly catch /=head\d/ tags.
1106     * Added a PATCHING guideline document.
1107     - Updated the class hierarchy in NOTES.
1108     - Installed.t now cleans up after itself better.
1109     - Steve Purkis rewrote the manifypods system to use Pod::Man
1110       rather than pod2man.  Its now portable and manifypods() moved from 
1111       MM_Unix to MM_Any.  As a result, lots of icky and redudant code went
1112       away.  This also removes the POD2MAN macro, but noone should be
1113       using that.  
1114     - "make manifypods" now works on Win32
1115     - "make manifypods" is now be faster
1116     - Made MM_Unix->find_perl more portable.  Eliminated MM_Win32->find_perl
1117       override.  MM_VMS->find_perl remains.
1118     * find_perl() can now handle filenames with spaces in them (RT448)
1119     * find_perl() on Win32 no longer produces spurious "File Creation error"
1120       messages (perlbug ID 20020709.001)
1121     - Removed unfinished and unused maybe_command_in_dirs()
1122     - Removed dead SelfLoader cruft from MM_Unix.
1123     - Fixed PPD generation when the ppd contains quotes (RT1473)
1124     - Fixed PPD generation on VMS
1125     - Moved Win9x specific subdir_x() code from MM_Unix to MM_Win95
1126     * Craig Berry fixed hint files on VMS
1127     - Added the perl_onliner() method to generate portable, safe one-liners
1128     - Changing hardcoded $self->{MAKEFILE} to $(FIRST_MAKEFILE).
1129     * Rafael Garcia-Suarez made MakeMaker ignore Subversion control files
1130       by default.
1131     - Added MAKEFILE_OLD macro.
1132     * No longer generating man pages by default on VMS.
1133     - Improved DISTNAME docs
1134     * Documented DISTVNAME and VERSION_SYM
1135     * Documented dist()
1136     - Seperated dist_core() into dist, tardist, uutardist, tarfile,
1137       zipdist, zipfile and shdist_target methods.  Allows elimination
1138       of redundant code in MM_VMS.
1139     - Replaced WARN_IF_OLD_PACKLIST, DOC_INSTALL and UNINSTALL
1140       one-liners with ExtUtils::Command::MM functions
1141     - Replaced VMS hand-rolled perl code for TOUCH, CHMOD, RM_F and RM_RF
1142       with ExtUtils::Command functions.  Added TEST_F.
1143     - Adding clean_subdirs target and clean_subdirs_target() method to
1144       generate same.  This allows easier overriding of an unportable part
1145       of the clean target.
1146     - Defined DEV_NULL for MacOS
1147     - Removed ROOTEXT from MM_MacOS, apparently unused
1148     - Added $(DIRFILESEP) macro and init_DIRFILESEP to avoid
1149       hardcoding / or \.  Reduces code duplication in the MM_* modules.
1150     - Added init_platform() and platform_constants() for OS specific
1151       macros.  Moved OS specific macros from constants() overrides there.
1152     - Added init_VERSION() to setup various *VERSION* macros.
1153     - Added default wraplist() to make porting easier.
1154     - Added makemakerdflt_target() to guarantee 'all' is the default
1155       target.
1156     - Added special_targets() to handle things like .PHONY and make sure
1157       they come first.
1158     - Added init_linker() to initialize linker relatied macros.
1159     - MM_MacOS constants() disolves
1160         Moved MACPERL_SRC, MACPERL_LIB, MACPERL_INC from init_main() to 
1161           init_platform().
1162         Moved DEFINE and INC tweaking from constants() to init_main()
1163         Moved DEFINE_VERSION & XS_DEFINE_VERSION from constants() to
1164           init_VERSION().
1165         Eliminated MODULES.  Unused and its the same as TO_INST_PM
1166         Moved .INCLUDE from constants() to special_targets()
1167
1168     - MM_NW5 constants() & init_others() disolves
1169         Moved LIBPTH, BASE_IMPORT, NLM_VERSION, MPKTOOL, TOOLPATH from 
1170           init_others() to init_platform()
1171         Moved INCLUDE and PATH definitions from constants() to 
1172           init_platform()
1173         Moved BOOT_SYMBOL, NLM_SHORT_NAME, PATH and INCLUDE from
1174           constants() to init_platform()
1175
1176     - MM_Unix constants() goes on a diet
1177         Moved all macro definitions to init_* methods.
1178         Added MM_REVISION for completeness
1179         Using wraplist() instead of manual joining
1180         Moved .NO_CONFIG_REC, .SUFFIXES and .PHONY to special_targets()
1181         Moved makemakerdflt: to makemakerdeflt_target()
1182         Moved INST_{STATIC,DYNAMIC,BOOT} to init_INST()
1183         Moved EXPORT_LIST, PERL_ARCHIVE & PERL_ARCHIVE_AFTER to init_linker().
1184         Moved PERL_MALLOC_DEF to init_platform()
1185
1186     - MM_VMS constants() goes on a diet
1187         Moved DEFINE from constants() to init_main()
1188         Moved OBJECT & LDFROM from constants() to init_others()
1189         Moved MM_VMS_REVISION and PERL_VMS to init_platform
1190         Added MM_VMS_VERSION
1191         Moved DEFINE_VERSION, XS_DEFINE_VERSION and MAKEMAKER changes to
1192             init_VERSION
1193         Moved .SUFFIXES changes to special_targets() override.
1194         Eliminated $self->{PM_TO_BLIB}.  Its redundant with $self->{PM}.
1195         constants() now consists only of fixpath() calls.
1196
1197     - MM_Win32 constants() goes away
1198         Moved .USESHELL to special_targets() override.
1199         Everything else was redundant.
1200
1201     - Added $(VERSION_FROM) to $(MAKEFILE) dependencies.  Helpful for
1202       XS builds where the version number is very sensitive.
1203     - export_list(), perl_archive() and perl_archive_after() consolodated
1204       into init_linker().
1205     - Added MM_NW5_VERSION, MM_Unix_VERSION, MM_Win32_VERSION, 
1206       MM_VMS_VERSION.
1207     - Eliminated duplicate code in constants() overrides
1208     - Added all_target() for easier customization of what's run by default
1209     - Eliminated duplicate top_targets() overrides
1210     - Made tool_autosplit() method portable.  Moved to MM_Any.  Eliminated
1211       overrides.
1212     - Adding realclean_subdirs target and realclean_subdirs_target()
1213       method to generate same.  This allows easier overriding of an 
1214       unportable part of the realclean target.    
1215     - Added oneliner() to create portable perl one-liners.
1216     - Craig Berry found some typos in ExtUtils::Liblist::Kid's VMS part
1217     * ExtUtils::Install did not work on MacPerl due to a hardcoded '.'
1218     * prompt() will now read from STDIN.
1219     - Craig Berry made sure extliblist() is always called even if LIBS
1220       is explicitly set to empty.
1221     * Added DESTDIR to make repacking easier.
1222     * $(*PREFIX) are returned to the INSTALL* variables.
1223     * Split $(PREFIX) into $(PERLPREFIX) and $(PREFIX).  The former
1224       holds the location of the core libraries.  The latter is the
1225       optional override prefix supplied by the user.
1226     * PREFIX overrides all other *PREFIXes when set in the Makefile.PL.
1227       This restores "make install PREFIX=foo".
1228     - Added quote_literal() to handle some shell quoting.
1229     - ExtUtils::MM_VMS now compilable on non-VMS platforms.
1230     - J. D. Laub made MakeMaker honor $Config{installstyle}
1231     - Renaming on OS/2 requires the target file to be removed.  
1232       Partially fixed by Ilya, should be applied universally later.
1233     - Default MANIFEST.SKIP not catching files in subdirs.  Fixed by Ilya.
1234     - Ilya fixed ExtUtils::Liblist->ext when called outside MakeMaker.
1235     - realclean was duplicating work already done by clean
1236     - Adding an explicit LICENSE
1237     - Cleaning up ExtUtils::Install docs.
1238     - ExtUtils::Install::uninstall() now has default verbose and
1239       dont_execute arguments.
1240     - Added some basic ExtUtils::Install tests
1241     - Fixed ExtUtils::Install::install() for relative dirs
1242     - Added split_command() and max_exec_len() to deal with long
1243       commands.
1244     - Seperated escape_newlines() from quote_literal().  This may
1245       be pointless.
1246     - pm_to_blib() now generated with split_command().  3x speedup.
1247     - added init_dist() to initialize distribution constants
1248     - ExtUtils::Install::pm_to_blib() working around open filehandle
1249       bug in AutoSplit for systems with mandatory file locking.
1250
1251 6.05 Tue Aug 27 16:09:51 PDT 2002
1252     - Output format of the hint file verbose diagnostic is now in
1253       a format native to the OS, so it broke a test on non-Unixen.
1254
1255 6.04 Mon Aug 26 18:31:11 PDT 2002 
1256     - Little fix for pre-5.8 Cygwin test to get the shared library names 
1257       right.
1258     * disttest on Win9X broken because of forgotten tabs
1259     * WriteMakefile argument verification should now be accurate
1260     - Documented the LD flag.
1261     * Documented prompt()
1262     * vendor install was not adding to packlist or updating perllocal.
1263     - Supporting $Config{vendorarchexp} and $Config{vendorlibexp}.
1264     - Fixed conflict on VMS between logical names and directories 
1265       (bleadperl 17488)
1266     - Fixed space-vs-tab bug on Netware (bleadperl 17579)
1267     - Mysterious NetWare fix from Ananth (bleadperl 17376)
1268     - Support OPTIMIZE in MacOS (bleadperl 17347)
1269     - Support hints in MacOS (mutation of bleadperl 17347)
1270     * Default man installation directories were using $(MAN*EXT) to
1271       generate the directory name.  This turned out to be wrong more
1272       often than right, so we'll use man1 and man3 hard-coded.
1273     - Debian folks fixed the doc_install targets so the Appending
1274       diagnostic gives the correct directory for perllocal.pod
1275     * Added ExtUtils::MakeMaker::FAQ
1276     - Quieted some warnings on MacOS (bleadperl 17669)
1277
1278 6.03 Wed Jun 19 17:06:14 EDT 2002
1279     - Documented that we're clamping down on cargo-cult MakeMaker
1280       programming.
1281     - Eased up the parameter verification to leave errant values alone.
1282     - Doug MacEachern documented LDDLFLAGS and added to known parameters.
1283     - Possible fix for XS compiles on Cygwin for pre 5.8 perls.
1284
1285 6.02 Sat Jun 15 19:46:06 EDT 2002
1286     - ExtUtils::Installed->modules() was broken in scalar context
1287     - Sync bleadperl 16922:  Netware updates from Ananth Kesari.
1288     - Sync bleadperl 16922:  MM_NW5 tests
1289     - Sync bleadperl 16938 & 16974:  MM_MacOS->macify fixes from pudge.
1290     - Sync bleadperl 16989 & 16942:  Small test fixes for MacPerl from pudge.
1291     - Improved WriteMakefile param verification to differenciate between
1292       parameters which don't exist and those that just take strings/numbers.
1293       [RT #707]
1294     * Documented TEST_VERBOSE
1295
1296 6.01 Thu May 30 14:48:57 EDT 2002
1297     - MacOS Classic fixes from Pudge: recursive make repair,
1298       post_initialize() now used, DEFINE & INC work with relative paths,
1299       removed dead hybrid method/function call code.
1300     * WriteMakefile now a bit more tolerant of wrong arguments, it will
1301       warn and try to soldier on rather than just vomiting.
1302     - Netware whitespace nits (bleadperl@16811)
1303     - Netware Perl version number tag when building dynamic libraries
1304       needs to match the current perl version instead of being hard coded
1305       (a mutation of bleadperl@16851)
1306     - OS/2 bug in TEST_F target found by John Poltorak (bleadperl@16839)
1307     - README in 6.00 still declared this as alpha.
1308
1309 6.00 Sat May 25 17:14:09 EDT 2002
1310     - VMS 8-level limit test tweak (bleadperl@16764)
1311     * Here goes nothing.
1312
1313 5.96_01 Wed May 22 19:11:09 EDT 2002
1314     - Fixed ExtUtils::testlib so it doesn't taint @INC.
1315     - Fixed ExtUtils::Command so it groks % shell wildcard on VMS.
1316       [RT 625]
1317     - MM now depends on Test::Harness 2.00 on VMS else tests with -T
1318       won't work, command line too long.
1319     - Added Craig's patch to fix limited level VMSs in the core.
1320
1321 5.95_01 Sat May 18 14:40:12 EDT 2002
1322     - Fixed ExtUtils::testlib so it has a reasonable chance of working
1323       under taint mode.
1324
1325 5.94_02 Fri May 17 17:16:04 EDT 2002
1326     - Fixing Manifest.t test for relative @INC when core testing.
1327
1328 5.94_01 Fri May 17 14:53:54 EDT 2002
1329     - Small NetWare change from Novell.
1330     - worked around 5.005_03's lack of a $Config{siteprefix} and
1331       $Config{sitebin}.
1332     - Small cross compilation changes (bleadperl 16582, 16548)
1333
1334     [[ Test Fixes ]]
1335     - Fixing ExtUtils::Command tests for VMS shell wildcard differences.
1336     - Fixing ExtUtils::Installed tests so they don't go looking at already
1337       installed installed lists.
1338
1339 5.93_01 Mon May  6 00:54:39 EDT 2002
1340     - fixed basic.t for limited depth VMS systems
1341     * MM_BeOS was totally hosed by a typo.
1342     - Made the ExtUtils::Command docs clear about how things come
1343       from @ARGV not @_.
1344     - Quieted nmake banners in disttest
1345
1346     * Backporting to 5.005_03
1347     - 'require 5.006' statements to 5.00503
1348     - Removing uses of File::Spec::Functions
1349     - Adding MODE arg to mkdir()
1350     - Changing uses of 'our' to 'use vars'
1351     - Changing uses of 'no warnings' to 'local $SIG{__WARN__}'
1352     - Changing 3-arg opens to 2-arg
1353     - Changing 'open my $fh' to 'open FH'
1354     - 5.005_03's File::Find doesn't have 'no_chdir'
1355
1356 5.92_01 Mon Apr 29 23:09:38 EDT 2002
1357     - Fixing case of modules with no .pm files on VMS.
1358     - LDLOADLIBS fix for NetBSD and easier overriding (bleadperl 16233)
1359     * syncing in MM_MacOS from pudge.
1360     - syncing in NetWare fixes (16266 & 16190)
1361     - Cleaning up MM_NW5.pm somewhat.
1362
1363 5.91_02 Wed Apr 24 01:29:56 EDT 2002
1364     - Adjustments to tests for inclusion in the core.
1365
1366 5.91_01 Wed Apr 24 00:11:06 EDT 2002
1367     [[ API Changes ]]
1368     * A failing Makefile.PL in a subdir will now kill the whole
1369       makefile making process.
1370     * "make install PREFIX=something" will no longer work.  Sorry.
1371     - Now supporting the usevendorprefix %Config setting
1372     - Tests now guaranteed to run in alphabetical order.
1373     - Allowing $VERSION = 0.
1374
1375     [[ Bug Fixes ]]
1376     - Missing prerequisite warning malformatted.
1377     - INSTALL*MAN*DIR and INST_MAN*DIR weren't allowed on the command 
1378       line.
1379     * For years now skipcheck() has been returning a different
1380       value than what was documented.
1381     - Partially reversing Ken's "speed up ExtUtils::Manifest" patch
1382       from 5.51_01 so MANIFEST overrides MANIFEST.SKIP.
1383     * Fixed PREFIXification so it works on Win32.
1384     * Fixed PREFIXification so it works on VMS.
1385     - Fixed INSTALLMAN*DIR=none on VMS.
1386     * NetWare fixes (bleadperl@16076)
1387     - Craig Berry fixed some macro corruption on VMS.
1388     - Systems configured to not have man pages now honored thanks to
1389       Paul Green
1390     - Hack to allow 5.6.X versions of ExtUtils::Embed use MY implicitly.
1391     - Moved use of glob out of MM_Unix so MacPerl could build
1392
1393     [[ Test Changes ]]
1394     - Shortening directory levels to accomodate old VMS's
1395     - was using a slightly wrong prefix for the prefix tests
1396
1397     [[ Doc Fixes ]]
1398     - Documenting VERBINST
1399
1400 5.90_01 Thu Apr 11 01:11:54 EDT 2002
1401     [[ API Changes ]]
1402     * Implementation of the new PREFIX logic.
1403     * Added new INSTALL targets:
1404         INSTALLSITEBIN
1405         INSTALLSITEMAN1DIR   INSTALLSITEMAN3DIR 
1406         INSTALLVENDORMAN1DIR INSTALLVENDORMAN3DIR
1407         INSTALLVENDORBIN INSTALLVENDORLIB INSTALLVENDORARCH
1408         SITEPREFIX VENDORPREFIX
1409     * INSTALLDIRS=site now properly using $Config{siteprefixexp}
1410       (Thieved from Debian.  Thanks!)
1411     * Added INSTALLDIRS=vendor & support for vendor directories
1412       (Thieved from Debian.  Thanks!)
1413
1414     [[ Bug Fixes ]]
1415     - nmake syntax nits from Mattia Barbon
1416     - ExtUtils::Packlist fix for files with spaces in them from Jan Dubois
1417       (bleadperl@15800)
1418     - Old, old, old dmake bug in MM_Win32->pm_to_blib fixed by Nick
1419       (bleadperl 15847)
1420
1421     [[ Internals ]]
1422     - Purging leftover PDP compiler flags.
1423
1424 5.55_03 Sat Apr  6 21:57:01 EST 2002
1425     - Reversing "fix" for RT 444.  It wasn't really fixed and it
1426       caused havoc with Compress::Zlib and Tk.
1427
1428 5.55_02 Sat Apr  6 03:09:15 EST 2002
1429     [[ Bug Fixes ]]
1430     - Craig Berry fixed install on VMS (again, I munged the last patch)
1431     - MakeMaker might not be recognizing it's in PERL_SRC on Win32.
1432       Made safer.
1433     - For some reason MM_VMS was using $Config{arch} instead of
1434       $Config{archname}
1435     - Fix (well, hack) for creating ABSPERL on VMS.
1436     - Quieting some warnings revealed by ExtUtils::Constant
1437     - test_via_script had a typo and forgot INST_ARCHLIB
1438
1439     [[ Test Fixes ]]
1440     - INST.t has to tell MakeMaker it's in the PERL_CORE
1441     - Fixing expected values of INST_* when building the core.
1442
1443 5.55_01 Thu Apr  4 23:58:06 EST 2002
1444     [[ API Changes ]]
1445     * Long deprecated INST_EXE completely removed.
1446     - Removing TEST_LIBS constant (never seen in a stable MM anyway)
1447     - Added $default argument to prefixify() for safer prefixification.
1448
1449     [[ Bug Fixes ]]
1450     - $mm->{PERM_*} were not being set
1451     - fixin() redundantly chmod'ing scripts.  Let the Makefile do that.
1452     - The above means MM_Unix will now compile cleanly under strict
1453     * init_dirscan's search for Makefile.PL's will no longer look
1454       inside a distdir.
1455     * Fixed running tests when there are t/'s in subdirs.
1456     - MM_DOS inheriting from MM_Unix instead of MM_Win32.  DJGPP
1457       appears to be unix-like (bleadperl@15650)
1458     - Escaping constants with # in them so they're not confused as
1459       make comments (bleadperl)
1460     * ExtUtils::MM_Win95 didn't return a true value
1461     - Fixing disttest when perl is a relative path.
1462     * Fixed disttest & tests in subdirs on Win95
1463     - Fixed recursive Makefile.PL scan on VMS so it skips the distdir
1464     - Fixed a bug when an alternative MAKEFILE is specified and you're
1465       using something other than a Makefile.PL (RT 444)
1466     - Quieting uninit warning when there are no tests.
1467
1468     [[ Doc Fixes ]]
1469     - Documented INSTALLMAN*DIR == 'none' feature.
1470
1471     [[ Test Fixes ]]
1472     - Paul Green's which_perl patch to build a proper Perl on systems
1473       that use command extensions.
1474     - basic.t's Makefile.PL PREFIX call wasn't properly quoted for VMS
1475       (Craig Berry)
1476     - little initialization glitch in MM_Win32.t
1477
1478     [[ Internals ]]
1479     - INST_* constants moved to init_INST
1480     - INSTALL* constants moved to inst_INSTALL
1481     * Internal warning supression removed.
1482     - Temporarily turning off SelfLoader in MM_Unix so warnings
1483       have the right line numbers.
1484
1485 5.54_01 Sat Mar 30 02:32:44 EST 2002
1486     [[ New Features ]]
1487     * Added FULLPERLRUN and FULLPERLRUNINST
1488
1489     [[ Bug Fixes ]]
1490     - hint files were made a little too noisy in 5.53_01
1491
1492     [[ Test Fixes ]]
1493     - adjusting for NFS time drift
1494     - basic.t was finding the wrong perl in the core
1495
1496     [[ Internals ]]
1497     - FULLPERL* PERL* setup moved to init_PERL
1498
1499 5.53_02 Fri Mar 29 04:47:44 EST 2002
1500     - Adjusted for Perl core.  Synced into bleadperl.
1501
1502 5.53_01 Fri Mar 29 00:13:02 EST 2002
1503     [[ Bug Fixes ]]
1504     - Removed duplicate NAME macro definition
1505     - Fixed makemakerdflt target for VMS
1506     * bleadperl@11460 introduced a bug with recursive Makefile.PL's not
1507       having '.' in @INC.  PDL should build now.
1508     * MANIFEST.SKIP only working on file names, not full relative paths.
1509       Only since 5.51_01  (RT 413)
1510     * make test TEST_VERBOSE=1 was busted by 5.50_01 (RT 423)
1511     * Error messages from dying Makefile.PL's and hint files were
1512       accidentally supressed in 5.48_04.  Fixed.
1513     * Makefile.PL's are supposed to be run in package main.  5.48_04
1514       broke this.  Fixed.
1515     * Fixing installing on VMS.
1516
1517 5.52_01 Tue Mar 26 00:24:26 EST 2002
1518     [[ Bug Fixes ]]
1519     * ActivePerl 5.6.1/build 631 now 100%
1520     - Fixed some SelfLoader warnings
1521     * ExtUtils::MM_Win32 not subclassed off of ExtUtils::MM_Any properly
1522     - Bug in local $ENV{FOO} was causing failures in MM_Win32 tests.
1523       Compensating for the bug.
1524     - $Config{prefixexp} is sometimes bad on ActivePerl, compensating
1525     - Accidentally left htmlifypods tests in MM_Win32 tests
1526
1527     [[ Doc Changes ]]
1528     - Expanding Known Good list
1529     - Adding Known Programs to README
1530
1531 5.51_01 Mon Mar 18 01:37:02 EST 2002
1532     [[ API Changes ]]
1533     - Removing xsubpp and typemap from the distribution.  These are not
1534       Perl version independent files and should not be upgraded.
1535     - Removing ExtUtils::Embed.  Version specific module and should
1536       not be updated.
1537     - Removing ExtUtils::Constant.  Not directly tied to MakeMaker.
1538       Will be distributed seperately by Nick Clark.
1539
1540     [[ New Features ]]
1541     * realclean now deletes 'dist' directory.
1542
1543     [[ Bug Fixes ]]
1544     * Fixing ExtUtils::Installed for VMS
1545     * Fixed it so MakeMaker can build itself without needing an eariler
1546       version installed
1547     * Fixed ExtUtils::Installed so packlists work on VMS
1548     * ExtUtils::MM_VMS test had a stupid typo that prevented most
1549       of the tests from running.
1550     - Fixing VMS so 'mmk' is always 'mmk all' (bleadperl 15218)
1551     - ExtUtils::MM_Any->catfile was calling catdir
1552     - Added Ken William's "speed up ExtUtils::Manifest" patch.
1553     - Added Nick Clark's return value of manifest routines patch
1554       (bleadperl@14978)
1555     - Merging in bleadperl changes (14438, 14453, 14611, 14612, 14622,
1556       14655, 14677, 14688, 14902, 15023, 15187, 15367)
1557     - bleadperl change 15325 (VMS 'mmk all' hack) rejected.
1558     - ExtUtils::MM_Any->test_via_harness() now using -MExtUtils::testlib
1559       instead of -I's.  This keeps the command line shorter on VMS, but
1560       it means TEST_LIB doesn't work anymore.  May prove problematic.
1561     - PERLRUN now uses FULLPERL instead of PERL.  This avoids 
1562       accidental use of miniperl.  May cause problems in the core.
1563     - Fixed test_via_harness() on VMS so it uses PERLRUN.
1564     - ExtUtils::Manifest wrongly handling MANIFEST on VMS.
1565     - ExtUtils::Manifest::maniskip broken due to misuse of /o on a regex.
1566
1567 5.50_01 Mon Mar  4 23:44:48 EST 2002
1568     [[ API Changes ]]
1569     - htmlifypods and all HTML targets have been removed.  It didn't
1570       work properly.  A target for HTMLifying of docs will be
1571       added sometime in the future (read: send a patch).
1572     - Deprecated ROOTEXT variable removed (its been deprecated for
1573       more than five years).
1574     - Removed ExtUtils::Miniperl from the CPAN distribution.  Can't
1575       see how its useful outside the core.
1576
1577     [[ New Features ]]
1578     * Emacs backup files (ie. *~) are no longer copied into blib
1579       (this means you won't get Foo.pm~ accidentally installed anymore).
1580     - prefixify() now returns if the prefixification worked or not.
1581     - added the Perl patchlevel info to the description embedded in DLLs
1582       (Ilya Zakharevich perl change 14810)
1583
1584     [[ Bug Fixes ]]
1585     * 5.49_01 broke anything that depended on the MM class to be loaded
1586       with ExtUtils::MakeMaker, like CPAN.  Temporarily fixed.
1587     * Many places wrongfully assume MM methods can be called as class
1588       methods!  Inside and outside of MakeMaker.
1589     * DOS now acts like Win32 instead of Unix.  This should be less wrong.
1590     - Netware tweak from Ananth Kesari (perl change 14780)
1591
1592     [[ Doc Changes ]]
1593     * made the docs about the behavior of PREFIX a bit more vague
1594       reflecting its odd behavior.    
1595     - Replaced references to %Config with things people are more likely
1596       to understand in PREFIX & LIB docs.
1597     - Put PREFIX before LIB in the docs.
1598
1599     [[ Internal Refactorings ]]
1600     - File::Spec wrappers consolidated in MM_Any
1601     - test_via_harness/script consolidated in MM_Any
1602     * Added ExtUtils::Command::MM to replace large -e "one-liners"
1603     * Added ExtUtils::MM_UWIN, took UWIN specific code out of MM_Unix.
1604     * Added ExtUtils::MM_DOS, took some DOS specific code out of MM_Unix
1605     - Added a dist() override to MM_OS2.
1606     - Took the OS/2 specific code out of MM_Unix's dist()
1607     - Starting to quote as many command line switches as possible
1608       to make VMS have to override less of MM_Unix.
1609
1610 5.49_01 Mon Feb  4 00:42:40 EST 2002
1611     - Default TEST_LIBS now contains absolute paths, so tests can
1612       chdir without breaking @INC.
1613     - Some bug fixes in MM_Win32 were missing in MM_NW5.
1614     - LLIBPERL was not being set.
1615     - Gisle Aas fixed a warning in prompt when the user hits ctrl-D
1616       or pipes STDIN to /dev/null.
1617     - VMS's test is now a proper ->can check.
1618     - Stray newline in Command.t causing havoc (bleadperl 14441)
1619
1620     * Lots of internal changes.  Everything from here on is an internal
1621       change.
1622     - Broke ExtUtils::Liblist::Kid out into its own .pm.  Temporary.
1623     - Broke MM and MY out into their own .pm's.  Possibly temporary.
1624     - Broke ExtUtils::MM_Win95 out of ExtUtils::MM_Win32.  MM_Win95
1625       is now an MM_Win32 subclass.
1626     - Removed wrapper methods from ExtUtils::Liblist that were
1627       defering File::Spec loading.  Almost everything uses File::Spec
1628     - Changed most of the 'our's to 'use vars' in prep for 5.005_03
1629       backporting
1630     - Changed ExtUtils::MakeMaker->import(...) cargo-cultery in MM_* 
1631       modules to proper "use ExtUtils::MakeMaker qw(...)"
1632     - All non-Unix MM_* modules now directly inherit from MM_Unix.
1633       They did this before, but in a round-about way.
1634     - MM_* modules no longer directly muck with @MM::ISA.  Instead
1635       @MM::ISA does that itself.
1636     - Removed unnecessary require of Exporter in many MM_* modules.
1637     - MM_Cygwin was using an MM_Unix function directly without have
1638       explicitly required MM_Unix.
1639     - Most of MM_NW5 was redundant with MM_Win32.  So MM_NW5 is now
1640       a subclass of Win32 and the reduendant code has been deleted.
1641     - Replaced lots of calls to File::Spec->updir, curdir and rootdir
1642       with a global in MM_Unix.  Should make things a bit faster.
1643     - Untabified ExtUtils::MakeMaker.  I hate tabs.
1644     - "Which MM subclass should I use" logic moved from EU::MakeMaker
1645       to EU::MM.
1646     - Deprecated EU::MakeMaker::Version_check deleted.
1647
1648 5.48_04 Mon Jan 21 19:28:38 EST 2002
1649     - No longer requiring Test::More
1650     - Now tested to work with a clean 5.6.1
1651     - Stripped out $Revision based $VERSIONs.
1652     - Rolled in patches from p5p, vmsperl & VOS (14325, 14338, 14360, 14364)
1653     * hint files now run in a safer context.  Only $self is available.
1654     - ExtUtils::testlib now provides absolute paths into @INC.
1655       No longer obsolete
1656     - Little test fixes
1657
1658 5.48_03 Thu Jan 17 23:44:38 EST 2002
1659     * moved bin/inst to bin/instmodsh
1660     * Some Win32 backporting fixes.  The -x switch doesn't seem to
1661       work on Win32/5.6.1.
1662     * Bug on Win32.  MAKEMAKER variable not set properly.
1663     * _02 broke hints files.  Now fixed.
1664     - Minor prereq error formatting glitch
1665     - ExtUtils::testlib no longer a thin wrapper around blib, now a 
1666       thin wrapper around lib like it was.  blib is noisy on 5.6.1.
1667     - Nick and chromatic found and fixed some warnings in the tests
1668
1669 5.48_02 Wed Jan 16 19:11:26 EST 2002
1670     - Fixed some Win32 warnings.  Needs more work.
1671
1672 5.48_01 Wed Jan 16 15:10:28 EST 2002
1673     * Adapted from bleadperl@14303
1674     * Backported to 5.6.1
1675     - inst and xsubpp moved out of lib/ and into bin/
1676     - ExtUtils::testlib obsoleted.  Now a thin wrapper around blib.pm
1677     ***--> Non-Unix platforms not tested at all!  Please test and report
1678            back.  Tests probably only need minor fixes.
1679