Commit | Line | Data |
aa689395 |
1 | =head1 NAME |
2 | |
3 | Pumpkin - Notes on handling the Perl Patch Pumpkin |
4 | |
5 | =head1 SYNOPSIS |
6 | |
7 | There is no simple synopsis, yet. |
8 | |
9 | =head1 DESCRIPTION |
10 | |
11 | This document attempts to begin to describe some of the |
12 | considerations involved in patching and maintaining perl. |
13 | |
14 | This document is still under construction, and still subject to |
15 | significant changes. Still, I hope parts of it will be useful, |
16 | so I'm releasing it even though it's not done. |
17 | |
18 | For the most part, it's a collection of anecdotal information that |
19 | already assumes some familiarity with the Perl sources. I really need |
20 | an introductory section that describes the organization of the sources |
21 | and all the various auxiliary files that are part of the distribution. |
22 | |
23 | =head1 Where Do I Get Perl Sources and Related Material? |
24 | |
25 | The Comprehensive Perl Archive Network (or CPAN) is the place to go. |
26 | There are many mirrors, but the easiest thing to use is probably |
7b5757d1 |
27 | http://www.perl.com/CPAN/README.html , which automatically points you to a |
aa689395 |
28 | mirror site "close" to you. |
29 | |
30 | =head2 Perl5-porters mailing list |
31 | |
32 | The mailing list perl5-porters@perl.org |
33 | is the main group working with the development of perl. If you're |
34 | interested in all the latest developments, you should definitely |
35 | subscribe. The list is high volume, but generally has a |
36 | fairly low noise level. |
37 | |
38 | Subscribe by sending the message (in the body of your letter) |
39 | |
40 | subscribe perl5-porters |
41 | |
42 | to perl5-porters-request@perl.org . |
43 | |
44 | =head1 How are Perl Releases Numbered? |
45 | |
7b5757d1 |
46 | Perl version numbers are floating point numbers, such as 5.004. |
47 | (Observations about the imprecision of floating point numbers for |
48 | representing reality probably have more relevance than you might |
49 | imagine :-) The major version number is 5 and the '004' is the |
50 | patchlevel. (Questions such as whether or not '004' is really a minor |
51 | version number can safely be ignored.:) |
52 | |
53 | The version number is available as the magic variable $], |
aa689395 |
54 | and can be used in comparisons, e.g. |
55 | |
56 | print "You've got an old perl\n" if $] < 5.002; |
57 | |
aa689395 |
58 | You can also require particular version (or later) with |
59 | |
60 | use 5.002; |
61 | |
7b5757d1 |
62 | At some point in the future, we may need to decide what to call the |
63 | next big revision. In the .package file used by metaconfig to |
64 | generate Configure, there are two variables that might be relevant: |
65 | $baserev=5.0 and $package=perl5. At various times, I have suggested |
66 | we might change them to $baserev=5.1 and $package=perl5.1 if want |
67 | to signify a fairly major update. Or, we might want to jump to perl6. |
68 | Let's worry about that problem when we get there. |
69 | |
aa689395 |
70 | =head2 Subversions |
71 | |
72 | In addition, there may be "developer" sub-versions available. These |
73 | are not official releases. They may contain unstable experimental |
74 | features, and are subject to rapid change. Such developer |
75 | sub-versions are numbered with sub-version numbers. For example, |
76 | version 5.004_04 is the 4'th developer version built on top of |
77 | 5.004. It might include the _01, _02, and _03 changes, but it |
78 | also might not. Sub-versions are allowed to be subversive. |
79 | |
80 | These sub-versions can also be used as floating point numbers, so |
81 | you can do things such as |
82 | |
7b5757d1 |
83 | print "You've got an unstable perl\n" if $] == 5.00303; |
aa689395 |
84 | |
85 | You can also require particular version (or later) with |
86 | |
7b5757d1 |
87 | use 5.003_03; # the "_" is optional |
aa689395 |
88 | |
89 | Sub-versions produced by the members of perl5-porters are usually |
90 | available on CPAN in the F<src/5.0/unsupported> directory. |
91 | |
7b5757d1 |
92 | =head2 Maintenance and Development Subversions |
93 | |
94 | As an experiment, starting with version 5.004, subversions _01 through |
95 | _49 will be reserved for bug-fix maintenance releases, and subversions |
96 | _50 through _99 will be available for unstable development versions. |
97 | |
98 | The separate bug-fix track is being established to allow us an easy |
99 | way to distribute important bug fixes without waiting for the |
100 | developers to untangle all the other problems in the current |
101 | developer's release. |
102 | |
103 | Watch for announcements of maintenance subversions in |
104 | comp.lang.perl.announce. |
105 | |
aa689395 |
106 | =head2 Why such a complicated scheme? |
107 | |
108 | Two reasons, really. At least. |
109 | |
7b5757d1 |
110 | First, we need some way to identify and release collections of patches |
111 | that are known to have new features that need testing and exploration. The |
aa689395 |
112 | subversion scheme does that nicely while fitting into the |
113 | C<use 5.004;> mold. |
114 | |
115 | Second, since most of the folks who help maintain perl do so on a |
116 | free-time voluntary basis, perl development does not proceed at a |
117 | precise pace, though it always seems to be moving ahead quickly. |
118 | We needed some way to pass around the "patch pumpkin" to allow |
119 | different people chances to work on different aspects of the |
120 | distribution without getting in each other's way. It wouldn't be |
121 | constructive to have multiple people working on incompatible |
122 | implementations of the same idea. Instead what was needed was |
123 | some kind of "baton" or "token" to pass around so everyone knew |
124 | whose turn was next. |
125 | |
126 | =head2 Why is it called the patch pumpkin? |
127 | |
128 | Chip Salzenberg gets credit for that, with a nod to his cow orker, |
129 | David Croy. We had passed around various names (baton, token, hot |
130 | potato) but none caught on. Then, Chip asked: |
131 | |
132 | [begin quote] |
133 | |
134 | Who has the patch pumpkin? |
135 | |
136 | To explain: David Croy once told me once that at a previous job, |
137 | there was one tape drive and multiple systems that used it for backups. |
138 | But instead of some high-tech exclusion software, they used a low-tech |
139 | method to prevent multiple simultaneous backups: a stuffed pumpkin. |
140 | No one was allowed to make backups unless they had the "backup pumpkin". |
141 | |
142 | [end quote] |
143 | |
144 | The name has stuck. |
145 | |
146 | =head1 Philosophical Issues in Patching Perl |
147 | |
148 | There are no absolute rules, but there are some general guidelines I |
149 | have tried to follow as I apply patches to the perl sources. |
150 | (This section is still under construction.) |
151 | |
152 | =head2 Solve problems as generally as possible |
153 | |
7b5757d1 |
154 | Never implement a specific restricted solution to a problem when you |
155 | can solve the same problem in a more general, flexible way. |
156 | |
157 | For example, for dynamic loading to work on some SVR4 systems, we had |
158 | to build a shared libperl.so library. In order to build "FAT" binaries |
159 | on NeXT 4.0 systems, we had to build a special libperl library. Rather |
160 | than continuing to build a contorted nest of special cases, I |
161 | generalized the process of building libperl so that NeXT and SVR4 users |
162 | could still get their work done, but others could build a shared |
163 | libperl if they wanted to as well. |
aa689395 |
164 | |
165 | =head2 Seek consensus on major changes |
166 | |
167 | If you are making big changes, don't do it in secret. Discuss the |
168 | ideas in advance on perl5-porters. |
169 | |
170 | =head2 Keep the documentation up-to-date |
171 | |
172 | If your changes may affect how users use perl, then check to be sure |
173 | that the documentation is in sync with your changes. Be sure to |
174 | check all the files F<pod/*.pod> and also the F<INSTALL> document. |
175 | |
176 | Consider writing the appropriate documentation first and then |
7b5757d1 |
177 | implementing your change to correspond to the documentation. |
aa689395 |
178 | |
179 | =head2 Avoid machine-specific #ifdef's |
180 | |
181 | To the extent reasonable, try to avoid machine-specific #ifdef's in |
182 | the sources. Instead, use feature-specific #ifdef's. The reason is |
183 | that the machine-specific #ifdef's may not be valid across major |
184 | releases of the operating system. Further, the feature-specific tests |
185 | may help out folks on another platform who have the same problem. |
186 | |
187 | =head2 Allow for lots of testing |
188 | |
189 | We should never release a main version without testing it as a |
190 | subversion first. |
191 | |
6877a1cf |
192 | =head2 Test popular applications and modules. |
193 | |
194 | We should never release a main version without testing whether or not |
195 | it breaks various popular modules and applications. A partial list of |
196 | such things would include majordomo, metaconfig, apache, Tk, CGI, |
197 | libnet, and libwww, to name just a few. Of course it's quite possible |
198 | that some of those things will be just plain broken and need to be fixed, |
199 | but, in general, we ought to try to avoid breaking widely-installed |
200 | things. |
201 | |
7b5757d1 |
202 | =head2 Automate generation of derivative files |
aa689395 |
203 | |
204 | The F<embed.h>, F<keywords.h>, F<opcode.h>, and F<perltoc.pod> files |
205 | are all automatically generated by perl scripts. In general, don't |
206 | patch these directly; patch the data files instead. |
207 | |
208 | F<Configure> and F<config_h.SH> are also automatically generated by |
209 | B<metaconfig>. In general, you should patch the metaconfig units |
210 | instead of patching these files directly. However, minor changes to |
211 | F<Configure> may be made in between major sync-ups with the metaconfig |
212 | units, which tends to be complicated operations. |
213 | |
214 | =head1 How to Make a Distribution |
215 | |
216 | There really ought to be a 'make dist' target, but there isn't. |
217 | The 'dist' suite of tools also contains a number of tools that I haven't |
218 | learned how to use yet. Some of them may make this all a bit easier. |
219 | |
220 | Here are the steps I go through to prepare a patch & distribution. |
221 | |
3e3baf6d |
222 | Lots of it could doubtless be automated but isn't. The Porting/makerel |
223 | (make release) perl script does now help automate some parts of it. |
aa689395 |
224 | |
225 | =head2 Announce your intentions |
226 | |
227 | First, you should volunteer out loud to take the patch pumpkin. It's |
228 | generally counter-productive to have multiple people working in secret |
229 | on the same thing. |
230 | |
231 | At the same time, announce what you plan to do with the patch pumpkin, |
232 | to allow folks a chance to object or suggest alternatives, or do it for |
233 | you. Naturally, the patch pumpkin holder ought to incorporate various |
234 | bug fixes and documentation improvements that are posted while he or |
235 | she has the pumpkin, but there might also be larger issues at stake. |
236 | |
237 | One of the precepts of the subversion idea is that we shouldn't give |
7b5757d1 |
238 | the patch pumpkin to anyone unless we have some idea what he or she |
239 | is going to do with it. |
aa689395 |
240 | |
241 | =head2 refresh pod/perltoc.pod |
242 | |
243 | Presumably, you have done a full C<make> in your working source |
244 | directory. Before you C<make spotless> (if you do), and if you have |
245 | changed any documentation in any module or pod file, change to the |
246 | F<pod> directory and run C<make toc>. |
247 | |
3e3baf6d |
248 | =head2 run installhtml to check the validity of the pod files |
249 | |
aa689395 |
250 | =head2 update patchlevel.h |
251 | |
252 | Don't be shy about using the subversion number, even for a relatively |
253 | modest patch. We've never even come close to using all 99 subversions, |
254 | and it's better to have a distinctive number for your patch. If you |
255 | need feedback on your patch, go ahead and issue it and promise to |
256 | incorporate that feedback quickly (e.g. within 1 week) and send out a |
257 | second patch. |
258 | |
259 | =head2 run metaconfig |
260 | |
261 | If you need to make changes to Configure or config_h.SH, it may be best to |
262 | change the appropriate metaconfig units instead, and regenerate Configure. |
263 | |
264 | metaconfig -m |
265 | |
266 | will regenerate Configure and config_h.SH. More information on |
267 | obtaining and running metaconfig is in the F<U/README> file that comes |
268 | with Perl's metaconfig units. Perl's metaconfig units should be |
269 | available the same place you found this file. On CPAN, look under my |
3e3baf6d |
270 | directory F<authors/id/ANDYD/> for a file such as F<5.003_07-02.U.tar.gz>. |
aa689395 |
271 | That file should be unpacked in your main perl source directory. It |
272 | contains the files needed to run B<metaconfig> to reproduce Perl's |
7b5757d1 |
273 | Configure script. (Those units are for 5.003_07. There have been |
274 | changes since then; please contact me if you want more recent |
275 | versions, and I will try to point you in the right direction.) |
aa689395 |
276 | |
277 | Alternatively, do consider if the F<*ish.h> files might be a better |
278 | place for your changes. |
279 | |
280 | =head2 MANIFEST |
281 | |
282 | Make sure the MANIFEST is up-to-date. You can use dist's B<manicheck> |
283 | program for this. You can also use |
284 | |
3e3baf6d |
285 | perl -w -MExtUtils::Manifest=fullcheck -e fullcheck |
aa689395 |
286 | |
3e3baf6d |
287 | Both commands will also list extra files in the directory that are not |
288 | listed in MANIFEST. |
aa689395 |
289 | |
290 | The MANIFEST is normally sorted, with one exception. Perl includes |
291 | both a F<Configure> script and a F<configure> script. The |
292 | F<configure> script is a front-end to the main F<Configure>, but |
293 | is there to aid folks who use autoconf-generated F<configure> files |
294 | for other software. The problem is that F<Configure> and F<configure> |
295 | are the same on case-insensitive file systems, so I deliberately put |
296 | F<configure> first in the MANIFEST so that the extraction of |
297 | F<Configure> will overwrite F<configure> and leave you with the |
298 | correct script. (The F<configure> script must also have write |
299 | permission for this to work, so it's the only file in the distribution |
300 | I normally have with write permission.) |
301 | |
302 | If you are using metaconfig to regenerate Configure, then you should note |
303 | that metaconfig actually uses MANIFEST.new, so you want to be sure |
304 | MANIFEST.new is up-to-date too. I haven't found the MANIFEST/MANIFEST.new |
305 | distinction particularly useful, but that's probably because I still haven't |
306 | learned how to use the full suite of tools in the dist distribution. |
307 | |
308 | =head2 Check permissions |
309 | |
310 | All the tests in the t/ directory ought to be executable. The |
311 | main makefile used to do a 'chmod t/*/*.t', but that resulted in |
312 | a self-modifying distribution--something some users would strongly |
313 | prefer to avoid. Probably, the F<t/TEST> script should check for this |
314 | and do the chmod if needed, but it doesn't currently. |
315 | |
316 | In all, the following files should probably be executable: |
317 | |
318 | Configure |
319 | configpm |
320 | configure |
321 | embed.pl |
322 | installperl |
323 | installman |
324 | keywords.pl |
aa689395 |
325 | myconfig |
326 | opcode.pl |
327 | perly.fixer |
328 | t/TEST |
329 | t/*/*.t |
330 | *.SH |
331 | vms/ext/Stdio/test.pl |
332 | vms/ext/filespec.t |
333 | vms/fndvers.com |
334 | x2p/*.SH |
335 | |
336 | Other things ought to be readable, at least :-). |
337 | |
338 | Probably, the permissions for the files could be encoded in MANIFEST |
339 | somehow, but I'm reluctant to change MANIFEST itself because that |
340 | could break old scripts that use MANIFEST. |
341 | |
342 | I seem to recall that some SVR3 systems kept some sort of file that listed |
343 | permissions for system files; something like that might be appropriate. |
344 | |
345 | =head2 Run Configure |
346 | |
347 | This will build a config.sh and config.h. You can skip this if you haven't |
348 | changed Configure or config_h.SH at all. |
349 | |
350 | =head2 Update config_H |
351 | |
352 | The config_H file is provided to help those folks who can't run Configure. |
353 | It is important to keep it up-to-date. If you have changed config_h.SH, |
354 | those changes must be reflected in config_H as well. (The name config_H was |
355 | chosen to distinguish the file from config.h even on case-insensitive file |
356 | systems.) Simply edit the existing config_H file; keep the first few |
357 | explanatory lines and then copy your new config.h below. |
358 | |
359 | It may also be necessary to update vms/config.vms and |
360 | plan9/config.plan9, though you should be quite careful in doing so if |
361 | you are not familiar with those systems. You might want to issue your |
362 | patch with a promise to quickly issue a follow-up that handles those |
363 | directories. |
364 | |
365 | =head2 make run_byacc |
366 | |
367 | If you have byacc-1.8.2 (available from CPAN), and if there have been |
368 | changes to F<perly.y>, you can regenerate the F<perly.c> file. The |
369 | run_byacc makefile target does this by running byacc and then applying |
370 | some patches so that byacc dynamically allocates space, rather than |
371 | having fixed limits. This patch is handled by the F<perly.fixer> |
372 | script. Depending on the nature of the changes to F<perly.y>, you may |
373 | or may not have to hand-edit the patch to apply correctly. If you do, |
374 | you should include the edited patch in the new distribution. If you |
375 | have byacc-1.9, the patch won't apply cleanly. Changes to the printf |
376 | output statements mean the patch won't apply cleanly. Long ago I |
377 | started to fix F<perly.fixer> to detect this, but I never completed the |
378 | task. |
379 | |
380 | Some additional notes from Larry on this: |
381 | |
382 | Don't forget to regenerate perly.c.diff. |
383 | |
7b5757d1 |
384 | byacc -d perly.y |
aa689395 |
385 | mv y.tab.c perly.c |
386 | patch perly.c <perly.c.diff |
387 | # manually apply any failed hunks |
388 | diff -c2 perly.c.orig perly.c >perly.c.diff |
389 | |
390 | One chunk of lines that often fails begins with |
391 | |
392 | #line 29 "perly.y" |
393 | |
394 | and ends one line before |
395 | |
396 | #define YYERRCODE 256 |
397 | |
398 | This only happens when you add or remove a token type. I suppose this |
399 | could be automated, but it doesn't happen very often nowadays. |
400 | |
401 | Larry |
402 | |
403 | =head2 make regen_headers |
404 | |
405 | The F<embed.h>, F<keywords.h>, and F<opcode.h> files are all automatically |
406 | generated by perl scripts. Since the user isn't guaranteed to have a |
407 | working perl, we can't require the user to generate them. Hence you have |
408 | to, if you're making a distribution. |
409 | |
410 | I used to include rules like the following in the makefile: |
411 | |
412 | # The following three header files are generated automatically |
413 | # The correct versions should be already supplied with the perl kit, |
414 | # in case you don't have perl or 'sh' available. |
415 | # The - is to ignore error return codes in case you have the source |
416 | # installed read-only or you don't have perl yet. |
417 | keywords.h: keywords.pl |
418 | @echo "Don't worry if this fails." |
419 | - perl keywords.pl |
420 | |
421 | |
7b5757d1 |
422 | However, I got B<lots> of mail consisting of people worrying because the |
aa689395 |
423 | command failed. I eventually decided that I would save myself time |
424 | and effort by manually running C<make regen_headers> myself rather |
425 | than answering all the questions and complaints about the failing |
426 | command. |
427 | |
3e3baf6d |
428 | =head2 global.sym, interp.sym and perlio.sym |
aa689395 |
429 | |
430 | Make sure these files are up-to-date. Read the comments in these |
431 | files and in perl_exp.SH to see what to do. |
432 | |
433 | =head2 Binary compatibility |
434 | |
435 | If you do change F<global.sym> or F<interp.sym>, think carefully about |
436 | what you are doing. To the extent reasonable, we'd like to maintain |
437 | souce and binary compatibility with older releases of perl. That way, |
438 | extensions built under one version of perl will continue to work with |
439 | new versions of perl. |
440 | |
441 | Of course, some incompatible changes may well be necessary. I'm just |
442 | suggesting that we not make any such changes without thinking carefully |
443 | about them first. If possible, we should provide |
444 | backwards-compatibility stubs. There's a lot of XS code out there. |
445 | Let's not force people to keep changing it. |
446 | |
447 | =head2 Changes |
448 | |
449 | Be sure to update the F<Changes> file. Try to include both an overall |
450 | summary as well as detailed descriptions of the changes. Your |
3e3baf6d |
451 | audience will include other developers and users, so describe |
aa689395 |
452 | user-visible changes (if any) in terms they will understand, not in |
453 | code like "initialize foo variable in bar function". |
454 | |
455 | There are differing opinions on whether the detailed descriptions |
456 | ought to go in the Changes file or whether they ought to be available |
457 | separately in the patch file (or both). There is no disagreement that |
458 | detailed descriptions ought to be easily available somewhere. |
459 | |
460 | =head2 OS/2-specific updates |
461 | |
462 | In the os2 directory is F<diff.configure>, a set of OS/2-specific |
463 | diffs against B<Configure>. If you make changes to Configure, you may |
464 | want to consider regenerating this diff file to save trouble for the |
465 | OS/2 maintainer. |
466 | |
7b5757d1 |
467 | You can also consider the OS/2 diffs as reminders of portability |
468 | things that need to be fixed in Configure. |
469 | |
aa689395 |
470 | =head2 VMS-specific updates |
471 | |
472 | If you have changed F<perly.y>, then you may want to update |
473 | F<vms/perly_{h,c}.vms> by running C<perl vms/vms_yfix.pl>. |
474 | |
475 | The Perl version number appears in several places under F<vms>. |
476 | It is courteous to update these versions. For example, if you are |
477 | making 5.004_42, replace "5.00441" with "5.00442". |
478 | |
479 | =head2 Making the new distribution |
480 | |
481 | Suppose, for example, that you want to make version 5.004_08. Then you can |
482 | do something like the following |
483 | |
484 | mkdir ../perl5.004_08 |
485 | awk '{print $1}' MANIFEST | cpio -pdm ../perl5.004_08 |
486 | cd ../ |
487 | tar cf perl5.004_08.tar perl5.004_08 |
488 | gzip --best perl5.004_08.tar |
489 | |
3e3baf6d |
490 | These steps, with extra checks, are automated by the Porting/makerel |
491 | script. |
492 | |
aa689395 |
493 | =head2 Making a new patch |
494 | |
495 | I find the F<makepatch> utility quite handy for making patches. |
496 | You can obtain it from any CPAN archive under |
3e3baf6d |
497 | http://www.perl.com/CPAN/authors/Johan_Vromans/ . There are a couple |
498 | of differences between my version and the standard one. I have mine do |
499 | a |
aa689395 |
500 | |
501 | # Print a reassuring "End of Patch" note so people won't |
502 | # wonder if their mailer truncated patches. |
503 | print "\n\nEnd of Patch.\n"; |
504 | |
3e3baf6d |
505 | at the end. That's because I used to get questions from people asking |
506 | if their mail was truncated. |
507 | |
508 | It also writes Index: lines which include the new directory prefix |
509 | (change Index: print, approx line 294 or 310 depending on the version, |
510 | to read: print PATCH ("Index: $newdir$new\n");). That helps patches |
511 | work with more POSIX conformant patch programs. |
aa689395 |
512 | |
513 | Here's how I generate a new patch. I'll use the hypothetical |
514 | 5.004_07 to 5.004_08 patch as an example. |
515 | |
516 | # unpack perl5.004_07/ |
517 | gzip -d -c perl5.004_07.tar.gz | tar -xof - |
518 | # unpack perl5.004_08/ |
519 | gzip -d -c perl5.004_08.tar.gz | tar -xof - |
520 | makepatch perl5.004_07 perl5.004_08 > perl5.004_08.pat |
521 | |
522 | Makepatch will automatically generate appropriate B<rm> commands to remove |
523 | deleted files. Unfortunately, it will not correctly set permissions |
524 | for newly created files, so you may have to do so manually. For example, |
525 | patch 5.003_04 created a new test F<t/op/gv.t> which needs to be executable, |
526 | so at the top of the patch, I inserted the following lines: |
527 | |
528 | # Make a new test |
529 | touch t/op/gv.t |
530 | chmod +x t/opt/gv.t |
531 | |
532 | Now, of course, my patch is now wrong because makepatch didn't know I |
533 | was going to do that command, and it patched against /dev/null. |
534 | |
535 | So, what I do is sort out all such shell commands that need to be in the |
536 | patch (including possible mv-ing of files, if needed) and put that in the |
537 | shell commands at the top of the patch. Next, I delete all the patch parts |
538 | of perl5.004_08.pat, leaving just the shell commands. Then, I do the |
539 | following: |
540 | |
7b5757d1 |
541 | cd perl5.004_07 |
542 | sh ../perl5.004_08.pat |
aa689395 |
543 | cd .. |
7b5757d1 |
544 | makepatch perl5.004_07 perl5.004_08 >> perl5.004_08.pat |
aa689395 |
545 | |
546 | (Note the append to preserve my shell commands.) |
547 | Now, my patch will line up with what the end users are going to do. |
548 | |
549 | =head2 Testing your patch |
550 | |
551 | It seems obvious, but be sure to test your patch. That is, verify that |
552 | it produces exactly the same thing as your full distribution. |
553 | |
7b5757d1 |
554 | rm -rf perl5.004_07 |
555 | gzip -d -c perl5.004_07.tar.gz | tar -xf - |
556 | cd perl5.004_07 |
557 | sh ../perl5.004_08.pat |
558 | patch -p1 -N < ../perl5.004_08.pat |
aa689395 |
559 | cd .. |
7b5757d1 |
560 | gdiff -r perl5.004_07 perl5.004_08 |
aa689395 |
561 | |
562 | where B<gdiff> is GNU diff. Other diff's may also do recursive checking. |
563 | |
564 | =head2 More testing |
565 | |
566 | Again, it's obvious, but you should test your new version as widely as you |
567 | can. You can be sure you'll hear about it quickly if your version doesn't |
568 | work on both ANSI and pre-ANSI compilers, and on common systems such as |
569 | SunOS 4.1.[34], Solaris, and Linux. |
570 | |
571 | If your changes include conditional code, try to test the different |
572 | branches as thoroughly as you can. For example, if your system |
573 | supports dynamic loading, you can also test static loading with |
574 | |
575 | sh Configure -Uusedl |
576 | |
577 | You can also hand-tweak your config.h to try out different #ifdef |
578 | branches. |
579 | |
580 | =head1 Common Gotcha's |
581 | |
582 | =over 4 |
583 | |
584 | =item #elif |
585 | |
586 | The '#elif' preprocessor directive is not understood on all systems. |
587 | Specifically, I know that Pyramids don't understand it. Thus instead of the |
588 | simple |
589 | |
590 | #if defined(I_FOO) |
591 | # include <foo.h> |
592 | #elif defined(I_BAR) |
593 | # include <bar.h> |
594 | #else |
595 | # include <fubar.h> |
596 | #endif |
597 | |
598 | You have to do the more Byzantine |
599 | |
600 | #if defined(I_FOO) |
601 | # include <foo.h> |
602 | #else |
603 | # if defined(I_BAR) |
604 | # include <bar.h> |
605 | # else |
606 | # include <fubar.h> |
607 | # endif |
608 | #endif |
609 | |
610 | Incidentally, whitespace between the leading '#' and the preprocessor |
611 | command is not guaranteed, but is very portable and you may use it freely. |
612 | I think it makes things a bit more readable, especially once things get |
613 | rather deeply nested. I also think that things should almost never get |
614 | too deeply nested, so it ought to be a moot point :-) |
615 | |
616 | =item Probably Prefer POSIX |
617 | |
618 | It's often the case that you'll need to choose whether to do |
619 | something the BSD-ish way or the POSIX-ish way. It's usually not |
620 | a big problem when the two systems use different names for similar |
621 | functions, such as memcmp() and bcmp(). The perl.h header file |
622 | handles these by appropriate #defines, selecting the POSIX mem*() |
623 | functions if available, but falling back on the b*() functions, if |
624 | need be. |
625 | |
626 | More serious is the case where some brilliant person decided to |
627 | use the same function name but give it a different meaning or |
628 | calling sequence :-). getpgrp() and setpgrp() come to mind. |
629 | These are a real problem on systems that aim for conformance to |
630 | one standard (e.g. POSIX), but still try to support the other way |
631 | of doing things (e.g. BSD). My general advice (still not really |
632 | implemented in the source) is to do something like the following. |
633 | Suppose there are two alternative versions, fooPOSIX() and |
634 | fooBSD(). |
635 | |
636 | #ifdef HAS_FOOPOSIX |
637 | /* use fooPOSIX(); */ |
638 | #else |
639 | # ifdef HAS_FOOBSD |
640 | /* try to emulate fooPOSIX() with fooBSD(); |
641 | perhaps with the following: */ |
642 | # define fooPOSIX fooBSD |
643 | # else |
644 | # /* Uh, oh. We have to supply our own. */ |
645 | # define fooPOSIX Perl_fooPOSIX |
646 | # endif |
647 | #endif |
648 | |
649 | =item Think positively |
650 | |
651 | If you need to add an #ifdef test, it is usually easier to follow if you |
652 | think positively, e.g. |
653 | |
654 | #ifdef HAS_NEATO_FEATURE |
655 | /* use neato feature */ |
656 | #else |
657 | /* use some fallback mechanism */ |
658 | #endif |
659 | |
660 | rather than the more impenetrable |
661 | |
662 | #ifndef MISSING_NEATO_FEATURE |
663 | /* Not missing it, so we must have it, so use it */ |
664 | #else |
665 | /* Are missing it, so fall back on something else. */ |
666 | #endif |
667 | |
668 | Of course for this toy example, there's not much difference. But when |
669 | the #ifdef's start spanning a couple of screen fulls, and the #else's |
670 | are marked something like |
671 | |
672 | #else /* !MISSING_NEATO_FEATURE */ |
673 | |
674 | I find it easy to get lost. |
675 | |
676 | =item Providing Missing Functions -- Problem |
677 | |
678 | Not all systems have all the neat functions you might want or need, so |
679 | you might decide to be helpful and provide an emulation. This is |
680 | sound in theory and very kind of you, but please be careful about what |
681 | you name the function. Let me use the C<pause()> function as an |
682 | illustration. |
683 | |
684 | Perl5.003 has the following in F<perl.h> |
685 | |
686 | #ifndef HAS_PAUSE |
687 | #define pause() sleep((32767<<16)+32767) |
688 | #endif |
689 | |
690 | Configure sets HAS_PAUSE if the system has the pause() function, so |
691 | this #define only kicks in if the pause() function is missing. |
692 | Nice idea, right? |
693 | |
694 | Unfortunately, some systems apparently have a prototype for pause() |
695 | in F<unistd.h>, but don't actually have the function in the library. |
696 | (Or maybe they do have it in a library we're not using.) |
697 | |
698 | Thus, the compiler sees something like |
699 | |
700 | extern int pause(void); |
701 | /* . . . */ |
702 | #define pause() sleep((32767<<16)+32767) |
703 | |
704 | and dies with an error message. (Some compilers don't mind this; |
705 | others apparently do.) |
706 | |
707 | To work around this, 5.003_03 and later have the following in perl.h: |
708 | |
709 | /* Some unistd.h's give a prototype for pause() even though |
710 | HAS_PAUSE ends up undefined. This causes the #define |
711 | below to be rejected by the compiler. Sigh. |
712 | */ |
713 | #ifdef HAS_PAUSE |
714 | # define Pause pause |
715 | #else |
716 | # define Pause() sleep((32767<<16)+32767) |
717 | #endif |
718 | |
719 | This works. |
720 | |
721 | The curious reader may wonder why I didn't do the following in |
722 | F<util.c> instead: |
723 | |
724 | #ifndef HAS_PAUSE |
725 | void pause() |
726 | { |
727 | sleep((32767<<16)+32767); |
728 | } |
729 | #endif |
730 | |
731 | That is, since the function is missing, just provide it. |
732 | Then things would probably be been alright, it would seem. |
733 | |
734 | Well, almost. It could be made to work. The problem arises from the |
735 | conflicting needs of dynamic loading and namespace protection. |
736 | |
737 | For dynamic loading to work on AIX (and VMS) we need to provide a list |
738 | of symbols to be exported. This is done by the script F<perl_exp.SH>, |
739 | which reads F<global.sym> and F<interp.sym>. Thus, the C<pause> |
740 | symbol would have to be added to F<global.sym> So far, so good. |
741 | |
742 | On the other hand, one of the goals of Perl5 is to make it easy to |
743 | either extend or embed perl and link it with other libraries. This |
744 | means we have to be careful to keep the visible namespace "clean". |
745 | That is, we don't want perl's global variables to conflict with |
746 | those in the other application library. Although this work is still |
747 | in progress, the way it is currently done is via the F<embed.h> file. |
748 | This file is built from the F<global.sym> and F<interp.sym> files, |
749 | since those files already list the globally visible symbols. If we |
750 | had added C<pause> to global.sym, then F<embed.h> would contain the |
751 | line |
752 | |
753 | #define pause Perl_pause |
754 | |
755 | and calls to C<pause> in the perl sources would now point to |
756 | C<Perl_pause>. Now, when B<ld> is run to build the F<perl> executable, |
757 | it will go looking for C<perl_pause>, which probably won't exist in any |
758 | of the standard libraries. Thus the build of perl will fail. |
759 | |
760 | Those systems where C<HAS_PAUSE> is not defined would be ok, however, |
761 | since they would get a C<Perl_pause> function in util.c. The rest of |
762 | the world would be in trouble. |
763 | |
764 | And yes, this scenario has happened. On SCO, the function C<chsize> |
765 | is available. (I think it's in F<-lx>, the Xenix compatibility |
766 | library.) Since the perl4 days (and possibly before), Perl has |
767 | included a C<chsize> function that gets called something akin to |
768 | |
769 | #ifndef HAS_CHSIZE |
770 | I32 chsize(fd, length) |
771 | /* . . . */ |
772 | #endif |
773 | |
774 | When 5.003 added |
775 | |
776 | #define chsize Perl_chsize |
777 | |
778 | to F<embed.h>, the compile started failing on SCO systems. |
779 | |
780 | The "fix" is to give the function a different name. The one |
781 | implemented in 5.003_05 isn't optimal, but here's what was done: |
782 | |
783 | #ifdef HAS_CHSIZE |
784 | # ifdef my_chsize /* Probably #defined to Perl_my_chsize in embed.h */ |
785 | # undef my_chsize |
786 | # endif |
787 | # define my_chsize chsize |
788 | #endif |
789 | |
790 | My explanatory comment in patch 5.003_05 said: |
791 | |
792 | Undef and then re-define my_chsize from Perl_my_chsize to |
793 | just plain chsize if this system HAS_CHSIZE. This probably only |
794 | applies to SCO. This shows the perils of having internal |
795 | functions with the same name as external library functions :-). |
796 | |
797 | Now, we can safely put C<my_chsize> in F<global.sym>, export it, and |
798 | hide it with F<embed.h>. |
799 | |
800 | To be consistent with what I did for C<pause>, I probably should have |
801 | called the new function C<Chsize>, rather than C<my_chsize>. |
802 | However, the perl sources are quite inconsistent on this (Consider |
803 | New, Mymalloc, and Myremalloc, to name just a few.) |
804 | |
805 | There is a problem with this fix, however, in that C<Perl_chsize> |
806 | was available as a F<libperl.a> library function in 5.003, but it |
807 | isn't available any more (as of 5.003_07). This means that we've |
808 | broken binary compatibility. This is not good. |
809 | |
810 | =item Providing missing functions -- some ideas |
811 | |
812 | We currently don't have a standard way of handling such missing |
813 | function names. Right now, I'm effectively thinking aloud about a |
814 | solution. Some day, I'll try to formally propose a solution. |
815 | |
816 | Part of the problem is that we want to have some functions listed as |
817 | exported but not have their names mangled by embed.h or possibly |
818 | conflict with names in standard system headers. We actually already |
819 | have such a list at the end of F<perl_exp.SH> (though that list is |
820 | out-of-date): |
821 | |
822 | # extra globals not included above. |
823 | cat <<END >> perl.exp |
824 | perl_init_ext |
825 | perl_init_fold |
826 | perl_init_i18nl14n |
827 | perl_alloc |
828 | perl_construct |
829 | perl_destruct |
830 | perl_free |
831 | perl_parse |
832 | perl_run |
833 | perl_get_sv |
834 | perl_get_av |
835 | perl_get_hv |
836 | perl_get_cv |
837 | perl_call_argv |
838 | perl_call_pv |
839 | perl_call_method |
840 | perl_call_sv |
841 | perl_requirepv |
842 | safecalloc |
843 | safemalloc |
844 | saferealloc |
845 | safefree |
846 | |
847 | This still needs much thought, but I'm inclined to think that one |
848 | possible solution is to prefix all such functions with C<perl_> in the |
849 | source and list them along with the other C<perl_*> functions in |
850 | F<perl_exp.SH>. |
851 | |
852 | Thus, for C<chsize>, we'd do something like the following: |
853 | |
854 | /* in perl.h */ |
855 | #ifdef HAS_CHSIZE |
856 | # define perl_chsize chsize |
857 | #endif |
858 | |
859 | then in some file (e.g. F<util.c> or F<doio.c>) do |
860 | |
861 | #ifndef HAS_CHSIZE |
862 | I32 perl_chsize(fd, length) |
863 | /* implement the function here . . . */ |
864 | #endif |
865 | |
866 | Alternatively, we could just always use C<chsize> everywhere and move |
867 | C<chsize> from F<global.sym> to the end of F<perl_exp.SH>. That would |
868 | probably be fine as long as our C<chsize> function agreed with all the |
869 | C<chsize> function prototypes in the various systems we'll be using. |
870 | As long as the prototypes in actual use don't vary that much, this is |
871 | probably a good alternative. (As a counter-example, note how Configure |
872 | and perl have to go through hoops to find and use get Malloc_t and |
873 | Free_t for C<malloc> and C<free>.) |
874 | |
875 | At the moment, this latter option is what I tend to prefer. |
876 | |
877 | =item All the world's a VAX |
878 | |
879 | Sorry, showing my age:-). Still, all the world is not BSD 4.[34], |
880 | SVR4, or POSIX. Be aware that SVR3-derived systems are still quite |
881 | common (do you have any idea how many systems run SCO?) If you don't |
882 | have a bunch of v7 manuals handy, the metaconfig units (by default |
883 | installed in F</usr/local/lib/dist/U>) are a good resource to look at |
884 | for portability. |
885 | |
886 | =back |
887 | |
888 | =head1 Miscellaneous Topics |
889 | |
890 | =head2 Autoconf |
891 | |
892 | Why does perl use a metaconfig-generated Configure script instead of an |
893 | autoconf-generated configure script? |
894 | |
895 | Metaconfig and autoconf are two tools with very similar purposes. |
896 | Metaconfig is actually the older of the two, and was originally written |
897 | by Larry Wall, while autoconf is probably now used in a wider variety of |
898 | packages. The autoconf info file discusses the history of autoconf and |
899 | how it came to be. The curious reader is referred there for further |
900 | information. |
901 | |
902 | Overall, both tools are quite good, I think, and the choice of which one |
903 | to use could be argued either way. In March, 1994, when I was just |
904 | starting to work on Configure support for Perl5, I considered both |
905 | autoconf and metaconfig, and eventually decided to use metaconfig for the |
906 | following reasons: |
907 | |
908 | =over 4 |
909 | |
910 | =item Compatibility with Perl4 |
911 | |
912 | Perl4 used metaconfig, so many of the #ifdef's were already set up for |
913 | metaconfig. Of course metaconfig had evolved some since Perl4's days, |
914 | but not so much that it posed any serious problems. |
915 | |
916 | =item Metaconfig worked for me |
917 | |
918 | My system at the time was Interactive 2.2, a SVR3.2/386 derivative that |
919 | also had some POSIX support. Metaconfig-generated Configure scripts |
920 | worked fine for me on that system. On the other hand, autoconf-generated |
921 | scripts usually didn't. (They did come quite close, though, in some |
922 | cases.) At the time, I actually fetched a large number of GNU packages |
923 | and checked. Not a single one configured and compiled correctly |
924 | out-of-the-box with the system's cc compiler. |
925 | |
926 | =item Configure can be interactive |
927 | |
928 | With both autoconf and metaconfig, if the script works, everything is |
929 | fine. However, one of my main problems with autoconf-generated scripts |
930 | was that if it guessed wrong about something, it could be B<very> hard to |
931 | go back and fix it. For example, autoconf always insisted on passing the |
932 | -Xp flag to cc (to turn on POSIX behavior), even when that wasn't what I |
933 | wanted or needed for that package. There was no way short of editing the |
934 | configure script to turn this off. You couldn't just edit the resulting |
935 | Makefile at the end because the -Xp flag influenced a number of other |
936 | configure tests. |
937 | |
938 | Metaconfig's Configure scripts, on the other hand, can be interactive. |
939 | Thus if Configure is guessing things incorrectly, you can go back and fix |
940 | them. This isn't as important now as it was when we were actively |
941 | developing Configure support for new features such as dynamic loading, |
942 | but it's still useful occasionally. |
943 | |
944 | =item GPL |
945 | |
946 | At the time, autoconf-generated scripts were covered under the GNU Public |
947 | License, and hence weren't suitable for inclusion with Perl, which has a |
948 | different licensing policy. (Autoconf's licensing has since changed.) |
949 | |
950 | =item Modularity |
951 | |
952 | Metaconfig builds up Configure from a collection of discrete pieces |
953 | called "units". You can override the standard behavior by supplying your |
954 | own unit. With autoconf, you have to patch the standard files instead. |
955 | I find the metaconfig "unit" method easier to work with. Others |
956 | may find metaconfig's units clumsy to work with. |
957 | |
958 | =back |
959 | |
960 | =head2 @INC search order |
961 | |
962 | By default, the list of perl library directories in @INC is the |
963 | following: |
964 | |
965 | $archlib |
966 | $privlib |
967 | $sitearch |
968 | $sitelib |
969 | |
970 | Specifically, on my Solaris/x86 system, I run |
971 | B<sh Configure -Dprefix=/opt/perl> and I have the following |
972 | directories: |
973 | |
974 | /opt/perl/lib/i86pc-solaris/5.00307 |
975 | /opt/perl/lib |
976 | /opt/perl/lib/site_perl/i86pc-solaris |
977 | /opt/perl/lib/site_perl |
978 | |
979 | That is, perl's directories come first, followed by the site-specific |
980 | directories. |
981 | |
982 | The site libraries come second to support the usage of extensions |
983 | across perl versions. Read the relevant section in F<INSTALL> for |
984 | more information. If we ever make $sitearch version-specific, this |
985 | topic could be revisited. |
986 | |
987 | =head2 Why isn't there a directory to override Perl's library? |
988 | |
989 | Mainly because no one's gotten around to making one. Note that |
990 | "making one" involves changing perl.c, Configure, config_h.SH (and |
991 | associated files, see above), and I<documenting> it all in the |
992 | INSTALL file. |
993 | |
994 | Apparently, most folks who want to override one of the standard library |
995 | files simply do it by overwriting the standard library files. |
996 | |
997 | =head2 APPLLIB |
998 | |
999 | In the perl.c sources, you'll find an undocumented APPLLIB_EXP |
1000 | variable, sort of like PRIVLIB_EXP and ARCHLIB_EXP (which are |
1001 | documented in config_h.SH). Here's what APPLLIB_EXP is for, from |
1002 | a mail message from Larry: |
1003 | |
1004 | The main intent of APPLLIB_EXP is for folks who want to send out a |
1005 | version of Perl embedded in their product. They would set the symbol |
1006 | to be the name of the library containing the files needed to run or to |
1007 | support their particular application. This works at the "override" |
1008 | level to make sure they get their own versions of any library code that |
1009 | they absolutely must have configuration control over. |
1010 | |
1011 | As such, I don't see any conflict with a sysadmin using it for a |
1012 | override-ish sort of thing, when installing a generic Perl. It should |
1013 | probably have been named something to do with overriding though. Since |
1014 | it's undocumented we could still change it... :-) |
1015 | |
1016 | Given that it's already there, you can use it to override |
1017 | distribution modules. If you do |
1018 | |
1019 | sh Configure -Dccflags='-DAPPLLIB_EXP=/my/override' |
1020 | |
1021 | then perl.c will put /my/override ahead of ARCHLIB and PRIVLIB. |
1022 | |
1023 | =head1 Upload Your Work to CPAN |
1024 | |
1025 | You can upload your work to CPAN if you have a CPAN id. Check out |
1026 | http://www.perl.com/CPAN/modules/04pause.html for information on |
1027 | _PAUSE_, the Perl Author's Upload Server. |
1028 | |
1029 | I typically upload both the patch file, e.g. F<perl5.004_08.pat.gz> |
1030 | and the full tar file, e.g. F<perl5.004_08.tar.gz>. |
1031 | |
1032 | If you want your patch to appear in the F<src/5.0/unsupported> |
1033 | directory on CPAN, send e-mail to the CPAN master librarian. (Check |
7b5757d1 |
1034 | out http://www.perl.com/CPAN/CPAN.html ). |
aa689395 |
1035 | |
1036 | =head1 Help Save the World |
1037 | |
1038 | You should definitely announce your patch on the perl5-porters list. |
1039 | You should also consider announcing your patch on |
1040 | comp.lang.perl.announce, though you should make it quite clear that a |
1041 | subversion is not a production release, and be prepared to deal with |
1042 | people who will not read your disclaimer. |
1043 | |
1044 | =head1 Todo |
1045 | |
1046 | Here, in no particular order, are some Configure and build-related |
1047 | items that merit consideration. This list isn't exhaustive, it's just |
1048 | what I came up with off the top of my head. |
1049 | |
1050 | =head2 Good ideas waiting for round tuits |
1051 | |
1052 | =over 4 |
1053 | |
1054 | =item installprefix |
1055 | |
1056 | I think we ought to support |
1057 | |
1058 | Configure -Dinstallprefix=/blah/blah |
1059 | |
1060 | Currently, we support B<-Dprefix=/blah/blah>, but the changing the install |
1061 | location has to be handled by something like the F<config.over> trick |
1062 | described in F<INSTALL>. AFS users also are treated specially. |
1063 | We should probably duplicate the metaconfig prefix stuff for an |
1064 | install prefix. |
1065 | |
1066 | =item Configure -Dsrcdir=/blah/blah |
1067 | |
1068 | We should be able to emulate B<configure --srcdir>. Tom Tromey |
1069 | tromey@creche.cygnus.com has submitted some patches to |
1070 | the dist-users mailing list along these lines. Eventually, they ought |
1071 | to get folded back into the main distribution. |
1072 | |
1073 | =item Hint file fixes |
1074 | |
1075 | Various hint files work around Configure problems. We ought to fix |
1076 | Configure so that most of them aren't needed. |
1077 | |
1078 | =item Hint file information |
1079 | |
1080 | Some of the hint file information (particularly dynamic loading stuff) |
1081 | ought to be fed back into the main metaconfig distribution. |
1082 | |
1083 | =back |
1084 | |
1085 | =head2 Probably good ideas waiting for round tuits |
1086 | |
1087 | =over 4 |
1088 | |
1089 | =item GNU configure --options |
1090 | |
1091 | I've received sensible suggestions for --exec_prefix and other |
1092 | GNU configure --options. It's not always obvious exactly what is |
1093 | intended, but this merits investigation. |
1094 | |
1095 | =item make clean |
1096 | |
1097 | Currently, B<make clean> isn't all that useful, though |
1098 | B<make realclean> and B<make distclean> are. This needs a bit of |
1099 | thought and documentation before it gets cleaned up. |
1100 | |
1101 | =item Try gcc if cc fails |
1102 | |
1103 | Currently, we just give up. |
1104 | |
1105 | =item bypassing safe*alloc wrappers |
1106 | |
1107 | On some systems, it may be safe to call the system malloc directly |
1108 | without going through the util.c safe* layers. (Such systems would |
1109 | accept free(0), for example.) This might be a time-saver for systems |
1110 | that already have a good malloc. (Recent Linux libc's apparently have |
1111 | a nice malloc that is well-tuned for the system.) |
1112 | |
1113 | =back |
1114 | |
1115 | =head2 Vague possibilities |
1116 | |
1117 | =over 4 |
1118 | |
aa689395 |
1119 | =item MacPerl |
1120 | |
3e3baf6d |
1121 | Get some of the Macintosh stuff folded back into the main distribution. |
aa689395 |
1122 | |
1123 | =item gconvert replacement |
1124 | |
1125 | Maybe include a replacement function that doesn't lose data in rare |
1126 | cases of coercion between string and numerical values. |
1127 | |
1128 | =item long long |
1129 | |
1130 | Can we support C<long long> on systems where C<long long> is larger |
1131 | than what we've been using for C<IV>? What if you can't C<sprintf> |
1132 | a C<long long>? |
1133 | |
1134 | =item Improve makedepend |
1135 | |
1136 | The current makedepend process is clunky and annoyingly slow, but it |
1137 | works for most folks. Alas, it assumes that there is a filename |
1138 | $firstmakefile that the B<make> command will try to use before it uses |
1139 | F<Makefile>. Such may not be the case for all B<make> commands, |
1140 | particularly those on non-Unix systems. |
1141 | |
1142 | Probably some variant of the BSD F<.depend> file will be useful. |
1143 | We ought to check how other packages do this, if they do it at all. |
1144 | We could probably pre-generate the dependencies (with the exception of |
1145 | malloc.o, which could probably be determined at F<Makefile.SH> |
1146 | extraction time. |
1147 | |
1148 | =item GNU Makefile standard targets |
1149 | |
1150 | GNU software generally has standardized Makefile targets. Unless we |
1151 | have good reason to do otherwise, I see no reason not to support them. |
1152 | |
1153 | =item File locking |
1154 | |
1155 | Somehow, straighten out, document, and implement lockf(), flock(), |
1156 | and/or fcntl() file locking. It's a mess. |
1157 | |
1158 | =back |
1159 | |
1160 | =head1 AUTHOR |
1161 | |
1162 | Andy Dougherty <doughera@lafcol.lafayette.edu>. |
1163 | |
6877a1cf |
1164 | Additions by Chip Salzenberg <chip@perl.com>. |
aa689395 |
1165 | |
1166 | All opinions expressed herein are those of the authorZ<>(s). |
1167 | |
1168 | =head1 LAST MODIFIED |
1169 | |
3e3baf6d |
1170 | $Id: pumpkin.pod,v 1.10.1.1 1997/06/10 20:46:47 timbo Exp $ |