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