Upgrade to ExtUtils::CBuilder 0.17
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / CBuilder / Changes
1 Revision history for Perl extension ExtUtils::CBuilder.
2
3 0.17  Wed Mar 15 22:46:15 CST 2006
4
5  - When we're being run from an uninstalled perl distribution
6    (e.g. one that's in the process of being built and tested), we
7    search for perl first in the current working directory. [Randy
8    Sims]
9
10  - More fixing of the arg_defines() method on VMS. [Craig A. Berry and
11    John E. Malmberg]
12
13 0.16  Mon Mar 13 17:08:21 CST 2006
14
15  - Fix quoting of command line arguments on Windows. [Yitzchak
16    Scott-Thoennes]
17
18  - Provided a custom arg_defines() on VMS that does essentially the
19    same thing for /define that version 0.14 did for /include. [Craig
20    A. Berry]
21
22  - Documented the existing 'quiet' parameter, which silences the
23    printing of system() commands. [Suggested by Yitzchak
24    Scott-Thoennes]
25
26 0.15  Mon Oct  3 17:10:32 CDT 2005
27
28  - Several OS/2 fixes have been made, including: 1) adding the
29    necessary version string to DLLs, 2) passing the executable's name
30    to 'ldopts' without the .exe extension, 3) avoiding calling 'env'
31    via the 'shrpenv' thingy, since it triggers a fork() bug. [Ilya
32    Zakharevich]
33
34  - Integrate a couple cleanup-related changes from bleadperl that
35    somehow never got into this copy. [Steve Hay]
36
37  - Added a new 'defines' parameter to compile(), which gives a
38    platform-independant way to specify various -Dfoo=bar (or the
39    equivalent) compiler defines. [Randy W. Sims]
40
41 0.14  Mon Sep 19 13:40:37 CDT 2005
42
43  - Several fixes have been made for VMS, including: 1) there can only
44    be one /include qualifier, so merge multiple /includes into one; 2)
45    make sure the executable is named the same way that dynaloader will
46    look for it; 3) make sure the option files for the exported symbols
47    and the PERLSHR image are passed properly to the linker. [John
48    E. Malmberg]
49
50 0.13  Wed Aug 24 20:05:59 CDT 2005
51
52  - Several temporary files weren't being cleaned up during testing,
53    because the 'cleanup' mechanism was never properly implemented.
54    This is now fixed. [Steve Hay]
55
56 0.12  Mon May 30 16:40:10 CDT 2005
57
58  - In order to integrate into the perl core, patches were contributed
59    that a) put a $VERSION variable in each .pm file, b) add a 'quiet'
60    parameter to new() to shut up some of the command-echoing, c)
61    checks for the perl source headers in the CORE/ directory in the
62    perl source tree, not in the post-installation location, and d)
63    adjusts the CWD when running the regression tests under the perl
64    core. [Yitzchak Scott-Thoennes]
65
66  - Various parts of the code were looking for the CORE/ directory in
67    $Config{archlib}, $Config{installarchlib}, and $Config{archlibexp}.
68    Only the latter is correct, so we use that everywhere now. 
69    [Curt Tilmes]
70
71  - For Unix-ish platforms, link_executable() will now prefer
72    $Config{cc} to $Config{ld}, because that typically works
73    better. [Jarkko Hietaniemi and H.Merijn Brand]
74
75  - Prelinking (invoking ExtUtils::Mksymlists to create options-files)
76    is now only done when we're building dynamic libraries. [Yitzchak
77    Scott-Thoennes]
78
79 0.11  Tue Apr  5 20:58:41 CDT 2005
80
81  - Added a licensing statement to CBuilder.pm. [Spotted by Chip
82    Salzenberg]
83
84 0.10  Mon Mar 14 20:18:19 CST 2005
85
86  - Split out a few simple routines that format how compile switches
87    are formatted, so that we can override them for platforms like VMS
88    where they're very different.
89
90  - Fix compile() and link() on VMS. [Help from Michael Schwern and
91    Peter Prymmer]
92
93 0.09  Tue Feb  8 17:57:41 CST 2005
94
95  - Fixed a broken link_executable() method on cygwin - it now uses
96    'gcc' instead of $Config{ld} for the linking, because the latter is
97    actually a shell script which calls a perl script which calls gcc
98    in a way that only works for creating shared libraries, not
99    executables.
100
101 0.08  Tue Jan 18 21:54:11 CST 2005
102
103  - Fixed a testing error in which I had the prototype wrong for the
104    main() function. [Jose Pedro Oliveira]
105
106 0.07  Wed Jan 12 21:50:34 CST 2005
107
108  - Added the link_executable() method, which provides the ability to
109    create standalone executables.  This is NOT yet implemented on
110    Windows, and therefore the tests for it are skipped on Win32.
111    [Alberto Manuel Brandao Simoes]
112
113  - Integrated the latest split_like_shell() for Windows from
114    Module::Build (really need to find a better home for this code...),
115    which now does a much better job of handling quotes and backslashes
116    and so on. [Randy Sims]
117
118  - Fixed a couple of Windows problems related to the output-file name
119    in link(), and some clobbering of the 'include_dirs' parameter to
120    compile(). [Randy Sims]
121
122 0.06  Mon Dec 27 22:51:36 CST 2004
123
124  - Fixed a bug on Unix environments in which our work-around for
125    shell-commands like "FOO=BAR cc" (which is supposed to be turned
126    into "env FOO=BAR cc" to actually work) wasn't being called.
127
128 0.05  Wed Oct 13 23:09:09 CDT 2004
129
130  - Fixed a bug in split_like_shell() in which leading whitespace was
131    creating an empty word, manifesting as something like "gcc - no
132    such file or directory" during tests. [Spotted by Warren L. Dodge]
133
134  - Incorporate another split_like_shell() fix from Module::Build.
135
136 0.04  Sun Oct 10 00:31:08 CDT 2004
137
138  - Changed the split_like_shell() method to use the shellwords()
139    function from Text::ParseWords (a core module since 5.0), which
140    does a much better job than the split() we were using.
141
142
143 0.03  Fri May 14 23:12:23 CDT 2004
144
145  - Fixed minor problems with the Build.PL file, the module names
146    should be quoted.
147
148  - The VMS module declared itself with the wrong package name.
149
150
151 0.02  Fri Feb 20 10:17:40 CST 2004
152
153  - Fixed a bug in .../Platform/Windows.pm, in which compile() was
154    ignoring an 'include_dirs' argument.  [Randy Sims]
155
156  - Fixed a bug in .../Platform/Windows.pm, in which output files were
157    being created in the root directory \ when they should be created
158    in the current directory. [Randy Sims]
159
160
161 0.01  Mon Jan 12 08:12:35 CST 2004
162
163  - Original release, taken from Module::Build's C-building code, with
164    patching help from Randy Sims.