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