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