This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
[win32] integrate mainline
[perl5.git] / pod / perldelta4.pod
CommitLineData
6ee623d5
GS
1=head1 NAME
2
3perldelta - what's new for perl5.004
4
5=head1 DESCRIPTION
6
7This document describes differences between the 5.003 release (as
8documented in I<Programming Perl>, second edition--the Camel Book) and
9this one.
10
11=head1 Supported Environments
12
13Perl5.004 builds out of the box on Unix, Plan 9, LynxOS, VMS, OS/2,
14QNX, AmigaOS, and Windows NT. Perl runs on Windows 95 as well, but it
15cannot be built there, for lack of a reasonable command interpreter.
16
17=head1 Core Changes
18
19Most importantly, many bugs were fixed, including several security
20problems. See the F<Changes> file in the distribution for details.
21
22=head2 List assignment to %ENV works
23
24C<%ENV = ()> and C<%ENV = @list> now work as expected (except on VMS
25where it generates a fatal error).
26
27=head2 "Can't locate Foo.pm in @INC" error now lists @INC
28
29=head2 Compilation option: Binary compatibility with 5.003
30
31There is a new Configure question that asks if you want to maintain
32binary compatibility with Perl 5.003. If you choose binary
33compatibility, you do not have to recompile your extensions, but you
34might have symbol conflicts if you embed Perl in another application,
35just as in the 5.003 release. By default, binary compatibility
36is preserved at the expense of symbol table pollution.
37
38=head2 $PERL5OPT environment variable
39
40You may now put Perl options in the $PERL5OPT environment variable.
41Unless Perl is running with taint checks, it will interpret this
42variable as if its contents had appeared on a "#!perl" line at the
43beginning of your script, except that hyphens are optional. PERL5OPT
44may only be used to set the following switches: B<-[DIMUdmw]>.
45
46=head2 Limitations on B<-M>, B<-m>, and B<-T> options
47
48The C<-M> and C<-m> options are no longer allowed on the C<#!> line of
49a script. If a script needs a module, it should invoke it with the
50C<use> pragma.
51
52The B<-T> option is also forbidden on the C<#!> line of a script,
53unless it was present on the Perl command line. Due to the way C<#!>
54works, this usually means that B<-T> must be in the first argument.
55Thus:
56
57 #!/usr/bin/perl -T -w
58
59will probably work for an executable script invoked as C<scriptname>,
60while:
61
62 #!/usr/bin/perl -w -T
63
64will probably fail under the same conditions. (Non-Unix systems will
65probably not follow this rule.) But C<perl scriptname> is guaranteed
66to fail, since then there is no chance of B<-T> being found on the
67command line before it is found on the C<#!> line.
68
69=head2 More precise warnings
70
71If you removed the B<-w> option from your Perl 5.003 scripts because it
72made Perl too verbose, we recommend that you try putting it back when
73you upgrade to Perl 5.004. Each new perl version tends to remove some
74undesirable warnings, while adding new warnings that may catch bugs in
75your scripts.
76
77=head2 Deprecated: Inherited C<AUTOLOAD> for non-methods
78
79Before Perl 5.004, C<AUTOLOAD> functions were looked up as methods
80(using the C<@ISA> hierarchy), even when the function to be autoloaded
81was called as a plain function (e.g. C<Foo::bar()>), not a method
82(e.g. C<Foo-E<gt>bar()> or C<$obj-E<gt>bar()>).
83
84Perl 5.005 will use method lookup only for methods' C<AUTOLOAD>s.
85However, there is a significant base of existing code that may be using
86the old behavior. So, as an interim step, Perl 5.004 issues an optional
87warning when a non-method uses an inherited C<AUTOLOAD>.
88
89The simple rule is: Inheritance will not work when autoloading
90non-methods. The simple fix for old code is: In any module that used to
91depend on inheriting C<AUTOLOAD> for non-methods from a base class named
92C<BaseClass>, execute C<*AUTOLOAD = \&BaseClass::AUTOLOAD> during startup.
93
94=head2 Previously deprecated %OVERLOAD is no longer usable
95
96Using %OVERLOAD to define overloading was deprecated in 5.003.
97Overloading is now defined using the overload pragma. %OVERLOAD is
98still used internally but should not be used by Perl scripts. See
99L<overload> for more details.
100
101=head2 Subroutine arguments created only when they're modified
102
103In Perl 5.004, nonexistent array and hash elements used as subroutine
104parameters are brought into existence only if they are actually
105assigned to (via C<@_>).
106
107Earlier versions of Perl vary in their handling of such arguments.
108Perl versions 5.002 and 5.003 always brought them into existence.
109Perl versions 5.000 and 5.001 brought them into existence only if
110they were not the first argument (which was almost certainly a bug).
111Earlier versions of Perl never brought them into existence.
112
113For example, given this code:
114
115 undef @a; undef %a;
116 sub show { print $_[0] };
117 sub change { $_[0]++ };
118 show($a[2]);
119 change($a{b});
120
121After this code executes in Perl 5.004, $a{b} exists but $a[2] does
122not. In Perl 5.002 and 5.003, both $a{b} and $a[2] would have existed
123(but $a[2]'s value would have been undefined).
124
125=head2 Group vector changeable with C<$)>
126
127The C<$)> special variable has always (well, in Perl 5, at least)
128reflected not only the current effective group, but also the group list
129as returned by the C<getgroups()> C function (if there is one).
130However, until this release, there has not been a way to call the
131C<setgroups()> C function from Perl.
132
133In Perl 5.004, assigning to C<$)> is exactly symmetrical with examining
134it: The first number in its string value is used as the effective gid;
135if there are any numbers after the first one, they are passed to the
136C<setgroups()> C function (if there is one).
137
138=head2 Fixed parsing of $$<digit>, &$<digit>, etc.
139
140Perl versions before 5.004 misinterpreted any type marker followed by
141"$" and a digit. For example, "$$0" was incorrectly taken to mean
142"${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
143
144However, the developers of Perl 5.004 could not fix this bug completely,
145because at least two widely-used modules depend on the old meaning of
146"$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
147old (broken) way inside strings; but it generates this message as a
148warning. And in Perl 5.005, this special treatment will cease.
149
150=head2 Fixed localization of $<digit>, $&, etc.
151
152Perl versions before 5.004 did not always properly localize the
153regex-related special variables. Perl 5.004 does localize them, as
154the documentation has always said it should. This may result in $1,
155$2, etc. no longer being set where existing programs use them.
156
157=head2 No resetting of $. on implicit close
158
159The documentation for Perl 5.0 has always stated that C<$.> is I<not>
160reset when an already-open file handle is reopened with no intervening
161call to C<close>. Due to a bug, perl versions 5.000 through 5.003
162I<did> reset C<$.> under that circumstance; Perl 5.004 does not.
163
164=head2 C<wantarray> may return undef
165
166The C<wantarray> operator returns true if a subroutine is expected to
167return a list, and false otherwise. In Perl 5.004, C<wantarray> can
168also return the undefined value if a subroutine's return value will
169not be used at all, which allows subroutines to avoid a time-consuming
170calculation of a return value if it isn't going to be used.
171
172=head2 C<eval EXPR> determines value of EXPR in scalar context
173
174Perl (version 5) used to determine the value of EXPR inconsistently,
175sometimes incorrectly using the surrounding context for the determination.
176Now, the value of EXPR (before being parsed by eval) is always determined in
177a scalar context. Once parsed, it is executed as before, by providing
178the context that the scope surrounding the eval provided. This change
179makes the behavior Perl4 compatible, besides fixing bugs resulting from
180the inconsistent behavior. This program:
181
182 @a = qw(time now is time);
183 print eval @a;
184 print '|', scalar eval @a;
185
186used to print something like "timenowis881399109|4", but now (and in perl4)
187prints "4|4".
188
189=head2 Changes to tainting checks
190
191A bug in previous versions may have failed to detect some insecure
192conditions when taint checks are turned on. (Taint checks are used
193in setuid or setgid scripts, or when explicitly turned on with the
194C<-T> invocation option.) Although it's unlikely, this may cause a
195previously-working script to now fail -- which should be construed
196as a blessing, since that indicates a potentially-serious security
197hole was just plugged.
198
199The new restrictions when tainting include:
200
201=over
202
203=item No glob() or <*>
204
205These operators may spawn the C shell (csh), which cannot be made
206safe. This restriction will be lifted in a future version of Perl
207when globbing is implemented without the use of an external program.
208
209=item No spawning if tainted $CDPATH, $ENV, $BASH_ENV
210
211These environment variables may alter the behavior of spawned programs
212(especially shells) in ways that subvert security. So now they are
213treated as dangerous, in the manner of $IFS and $PATH.
214
215=item No spawning if tainted $TERM doesn't look like a terminal name
216
217Some termcap libraries do unsafe things with $TERM. However, it would be
218unnecessarily harsh to treat all $TERM values as unsafe, since only shell
219metacharacters can cause trouble in $TERM. So a tainted $TERM is
220considered to be safe if it contains only alphanumerics, underscores,
221dashes, and colons, and unsafe if it contains other characters (including
222whitespace).
223
224=back
225
226=head2 New Opcode module and revised Safe module
227
228A new Opcode module supports the creation, manipulation and
229application of opcode masks. The revised Safe module has a new API
230and is implemented using the new Opcode module. Please read the new
231Opcode and Safe documentation.
232
233=head2 Embedding improvements
234
235In older versions of Perl it was not possible to create more than one
236Perl interpreter instance inside a single process without leaking like a
237sieve and/or crashing. The bugs that caused this behavior have all been
238fixed. However, you still must take care when embedding Perl in a C
239program. See the updated perlembed manpage for tips on how to manage
240your interpreters.
241
242=head2 Internal change: FileHandle class based on IO::* classes
243
244File handles are now stored internally as type IO::Handle. The
245FileHandle module is still supported for backwards compatibility, but
246it is now merely a front end to the IO::* modules -- specifically,
247IO::Handle, IO::Seekable, and IO::File. We suggest, but do not
248require, that you use the IO::* modules in new code.
249
250In harmony with this change, C<*GLOB{FILEHANDLE}> is now just a
251backward-compatible synonym for C<*GLOB{IO}>.
252
253=head2 Internal change: PerlIO abstraction interface
254
255It is now possible to build Perl with AT&T's sfio IO package
256instead of stdio. See L<perlapio> for more details, and
257the F<INSTALL> file for how to use it.
258
259=head2 New and changed syntax
260
261=over
262
263=item $coderef->(PARAMS)
264
265A subroutine reference may now be suffixed with an arrow and a
266(possibly empty) parameter list. This syntax denotes a call of the
267referenced subroutine, with the given parameters (if any).
268
269This new syntax follows the pattern of S<C<$hashref-E<gt>{FOO}>> and
270S<C<$aryref-E<gt>[$foo]>>: You may now write S<C<&$subref($foo)>> as
271S<C<$subref-E<gt>($foo)>>. All of these arrow terms may be chained;
272thus, S<C<&{$table-E<gt>{FOO}}($bar)>> may now be written
273S<C<$table-E<gt>{FOO}-E<gt>($bar)>>.
274
275=back
276
277=head2 New and changed builtin constants
278
279=over
280
281=item __PACKAGE__
282
283The current package name at compile time, or the undefined value if
284there is no current package (due to a C<package;> directive). Like
285C<__FILE__> and C<__LINE__>, C<__PACKAGE__> does I<not> interpolate
286into strings.
287
288=back
289
290=head2 New and changed builtin variables
291
292=over
293
294=item $^E
295
296Extended error message on some platforms. (Also known as
297$EXTENDED_OS_ERROR if you C<use English>).
298
299=item $^H
300
301The current set of syntax checks enabled by C<use strict>. See the
302documentation of C<strict> for more details. Not actually new, but
303newly documented.
304Because it is intended for internal use by Perl core components,
305there is no C<use English> long name for this variable.
306
307=item $^M
308
309By default, running out of memory it is not trappable. However, if
310compiled for this, Perl may use the contents of C<$^M> as an emergency
311pool after die()ing with this message. Suppose that your Perl were
312compiled with -DPERL_EMERGENCY_SBRK and used Perl's malloc. Then
313
314 $^M = 'a' x (1<<16);
315
316would allocate a 64K buffer for use when in emergency.
317See the F<INSTALL> file for information on how to enable this option.
318As a disincentive to casual use of this advanced feature,
319there is no C<use English> long name for this variable.
320
321=back
322
323=head2 New and changed builtin functions
324
325=over
326
327=item delete on slices
328
329This now works. (e.g. C<delete @ENV{'PATH', 'MANPATH'}>)
330
331=item flock
332
333is now supported on more platforms, prefers fcntl to lockf when
334emulating, and always flushes before (un)locking.
335
336=item printf and sprintf
337
338Perl now implements these functions itself; it doesn't use the C
339library function sprintf() any more, except for floating-point
340numbers, and even then only known flags are allowed. As a result, it
341is now possible to know which conversions and flags will work, and
342what they will do.
343
344The new conversions in Perl's sprintf() are:
345
346 %i a synonym for %d
347 %p a pointer (the address of the Perl value, in hexadecimal)
348 %n special: *stores* the number of characters output so far
349 into the next variable in the parameter list
350
351The new flags that go between the C<%> and the conversion are:
352
353 # prefix octal with "0", hex with "0x"
354 h interpret integer as C type "short" or "unsigned short"
355 V interpret integer as Perl's standard integer type
356
357Also, where a number would appear in the flags, an asterisk ("*") may
358be used instead, in which case Perl uses the next item in the
359parameter list as the given number (that is, as the field width or
360precision). If a field width obtained through "*" is negative, it has
361the same effect as the '-' flag: left-justification.
362
363See L<perlfunc/sprintf> for a complete list of conversion and flags.
364
365=item keys as an lvalue
366
367As an lvalue, C<keys> allows you to increase the number of hash buckets
368allocated for the given hash. This can gain you a measure of efficiency if
369you know the hash is going to get big. (This is similar to pre-extending
370an array by assigning a larger number to $#array.) If you say
371
372 keys %hash = 200;
373
374then C<%hash> will have at least 200 buckets allocated for it. These
375buckets will be retained even if you do C<%hash = ()>; use C<undef
376%hash> if you want to free the storage while C<%hash> is still in scope.
377You can't shrink the number of buckets allocated for the hash using
378C<keys> in this way (but you needn't worry about doing this by accident,
379as trying has no effect).
380
381=item my() in Control Structures
382
383You can now use my() (with or without the parentheses) in the control
384expressions of control structures such as:
385
386 while (defined(my $line = <>)) {
387 $line = lc $line;
388 } continue {
389 print $line;
390 }
391
392 if ((my $answer = <STDIN>) =~ /^y(es)?$/i) {
393 user_agrees();
394 } elsif ($answer =~ /^n(o)?$/i) {
395 user_disagrees();
396 } else {
397 chomp $answer;
398 die "`$answer' is neither `yes' nor `no'";
399 }
400
401Also, you can declare a foreach loop control variable as lexical by
402preceding it with the word "my". For example, in:
403
404 foreach my $i (1, 2, 3) {
405 some_function();
406 }
407
408$i is a lexical variable, and the scope of $i extends to the end of
409the loop, but not beyond it.
410
411Note that you still cannot use my() on global punctuation variables
412such as $_ and the like.
413
414=item pack() and unpack()
415
416A new format 'w' represents a BER compressed integer (as defined in
417ASN.1). Its format is a sequence of one or more bytes, each of which
418provides seven bits of the total value, with the most significant
419first. Bit eight of each byte is set, except for the last byte, in
420which bit eight is clear.
421
422If 'p' or 'P' are given undef as values, they now generate a NULL
423pointer.
424
425Both pack() and unpack() now fail when their templates contain invalid
426types. (Invalid types used to be ignored.)
427
428=item sysseek()
429
430The new sysseek() operator is a variant of seek() that sets and gets the
431file's system read/write position, using the lseek(2) system call. It is
432the only reliable way to seek before using sysread() or syswrite(). Its
433return value is the new position, or the undefined value on failure.
434
435=item use VERSION
436
437If the first argument to C<use> is a number, it is treated as a version
438number instead of a module name. If the version of the Perl interpreter
439is less than VERSION, then an error message is printed and Perl exits
440immediately. Because C<use> occurs at compile time, this check happens
441immediately during the compilation process, unlike C<require VERSION>,
442which waits until runtime for the check. This is often useful if you
443need to check the current Perl version before C<use>ing library modules
444which have changed in incompatible ways from older versions of Perl.
445(We try not to do this more than we have to.)
446
447=item use Module VERSION LIST
448
449If the VERSION argument is present between Module and LIST, then the
450C<use> will call the VERSION method in class Module with the given
451version as an argument. The default VERSION method, inherited from
452the UNIVERSAL class, croaks if the given version is larger than the
453value of the variable $Module::VERSION. (Note that there is not a
454comma after VERSION!)
455
456This version-checking mechanism is similar to the one currently used
457in the Exporter module, but it is faster and can be used with modules
458that don't use the Exporter. It is the recommended method for new
459code.
460
461=item prototype(FUNCTION)
462
463Returns the prototype of a function as a string (or C<undef> if the
464function has no prototype). FUNCTION is a reference to or the name of the
465function whose prototype you want to retrieve.
466(Not actually new; just never documented before.)
467
468=item srand
469
470The default seed for C<srand>, which used to be C<time>, has been changed.
471Now it's a heady mix of difficult-to-predict system-dependent values,
472which should be sufficient for most everyday purposes.
473
474Previous to version 5.004, calling C<rand> without first calling C<srand>
475would yield the same sequence of random numbers on most or all machines.
476Now, when perl sees that you're calling C<rand> and haven't yet called
477C<srand>, it calls C<srand> with the default seed. You should still call
478C<srand> manually if your code might ever be run on a pre-5.004 system,
479of course, or if you want a seed other than the default.
480
481=item $_ as Default
482
483Functions documented in the Camel to default to $_ now in
484fact do, and all those that do are so documented in L<perlfunc>.
485
486=item C<m//gc> does not reset search position on failure
487
488The C<m//g> match iteration construct has always reset its target
489string's search position (which is visible through the C<pos> operator)
490when a match fails; as a result, the next C<m//g> match after a failure
491starts again at the beginning of the string. With Perl 5.004, this
492reset may be disabled by adding the "c" (for "continue") modifier,
493i.e. C<m//gc>. This feature, in conjunction with the C<\G> zero-width
494assertion, makes it possible to chain matches together. See L<perlop>
495and L<perlre>.
496
497=item C<m//x> ignores whitespace before ?*+{}
498
499The C<m//x> construct has always been intended to ignore all unescaped
500whitespace. However, before Perl 5.004, whitespace had the effect of
501escaping repeat modifiers like "*" or "?"; for example, C</a *b/x> was
502(mis)interpreted as C</a\*b/x>. This bug has been fixed in 5.004.
503
504=item nested C<sub{}> closures work now
505
506Prior to the 5.004 release, nested anonymous functions didn't work
507right. They do now.
508
509=item formats work right on changing lexicals
510
511Just like anonymous functions that contain lexical variables
512that change (like a lexical index variable for a C<foreach> loop),
513formats now work properly. For example, this silently failed
514before (printed only zeros), but is fine now:
515
516 my $i;
517 foreach $i ( 1 .. 10 ) {
518 write;
519 }
520 format =
521 my i is @#
522 $i
523 .
524
525However, it still fails (without a warning) if the foreach is within a
526subroutine:
527
528 my $i;
529 sub foo {
530 foreach $i ( 1 .. 10 ) {
531 write;
532 }
533 }
534 foo;
535 format =
536 my i is @#
537 $i
538 .
539
540=back
541
542=head2 New builtin methods
543
544The C<UNIVERSAL> package automatically contains the following methods that
545are inherited by all other classes:
546
547=over
548
549=item isa(CLASS)
550
551C<isa> returns I<true> if its object is blessed into a subclass of C<CLASS>
552
553C<isa> is also exportable and can be called as a sub with two arguments. This
554allows the ability to check what a reference points to. Example:
555
556 use UNIVERSAL qw(isa);
557
558 if(isa($ref, 'ARRAY')) {
559 ...
560 }
561
562=item can(METHOD)
563
564C<can> checks to see if its object has a method called C<METHOD>,
565if it does then a reference to the sub is returned; if it does not then
566I<undef> is returned.
567
568=item VERSION( [NEED] )
569
570C<VERSION> returns the version number of the class (package). If the
571NEED argument is given then it will check that the current version (as
572defined by the $VERSION variable in the given package) not less than
573NEED; it will die if this is not the case. This method is normally
574called as a class method. This method is called automatically by the
575C<VERSION> form of C<use>.
576
577 use A 1.2 qw(some imported subs);
578 # implies:
579 A->VERSION(1.2);
580
581=back
582
583B<NOTE:> C<can> directly uses Perl's internal code for method lookup, and
584C<isa> uses a very similar method and caching strategy. This may cause
585strange effects if the Perl code dynamically changes @ISA in any package.
586
587You may add other methods to the UNIVERSAL class via Perl or XS code.
588You do not need to C<use UNIVERSAL> in order to make these methods
589available to your program. This is necessary only if you wish to
590have C<isa> available as a plain subroutine in the current package.
591
592=head2 TIEHANDLE now supported
593
594See L<perltie> for other kinds of tie()s.
595
596=over
597
598=item TIEHANDLE classname, LIST
599
600This is the constructor for the class. That means it is expected to
601return an object of some sort. The reference can be used to
602hold some internal information.
603
604 sub TIEHANDLE {
605 print "<shout>\n";
606 my $i;
607 return bless \$i, shift;
608 }
609
610=item PRINT this, LIST
611
612This method will be triggered every time the tied handle is printed to.
613Beyond its self reference it also expects the list that was passed to
614the print function.
615
616 sub PRINT {
617 $r = shift;
618 $$r++;
619 return print join( $, => map {uc} @_), $\;
620 }
621
622=item PRINTF this, LIST
623
624This method will be triggered every time the tied handle is printed to
625with the C<printf()> function.
626Beyond its self reference it also expects the format and list that was
627passed to the printf function.
628
629 sub PRINTF {
630 shift;
631 my $fmt = shift;
632 print sprintf($fmt, @_)."\n";
633 }
634
635=item READ this LIST
636
637This method will be called when the handle is read from via the C<read>
638or C<sysread> functions.
639
640 sub READ {
641 $r = shift;
642 my($buf,$len,$offset) = @_;
643 print "READ called, \$buf=$buf, \$len=$len, \$offset=$offset";
644 }
645
646=item READLINE this
647
648This method will be called when the handle is read from. The method
649should return undef when there is no more data.
650
651 sub READLINE {
652 $r = shift;
653 return "PRINT called $$r times\n"
654 }
655
656=item GETC this
657
658This method will be called when the C<getc> function is called.
659
660 sub GETC { print "Don't GETC, Get Perl"; return "a"; }
661
662=item DESTROY this
663
664As with the other types of ties, this method will be called when the
665tied handle is about to be destroyed. This is useful for debugging and
666possibly for cleaning up.
667
668 sub DESTROY {
669 print "</shout>\n";
670 }
671
672=back
673
674=head2 Malloc enhancements
675
676If perl is compiled with the malloc included with the perl distribution
677(that is, if C<perl -V:d_mymalloc> is 'define') then you can print
678memory statistics at runtime by running Perl thusly:
679
680 env PERL_DEBUG_MSTATS=2 perl your_script_here
681
682The value of 2 means to print statistics after compilation and on
683exit; with a value of 1, the statistics are printed only on exit.
684(If you want the statistics at an arbitrary time, you'll need to
685install the optional module Devel::Peek.)
686
687Three new compilation flags are recognized by malloc.c. (They have no
688effect if perl is compiled with system malloc().)
689
690=over
691
692=item -DPERL_EMERGENCY_SBRK
693
694If this macro is defined, running out of memory need not be a fatal
695error: a memory pool can allocated by assigning to the special
696variable C<$^M>. See L<"$^M">.
697
698=item -DPACK_MALLOC
699
700Perl memory allocation is by bucket with sizes close to powers of two.
701Because of these malloc overhead may be big, especially for data of
702size exactly a power of two. If C<PACK_MALLOC> is defined, perl uses
703a slightly different algorithm for small allocations (up to 64 bytes
704long), which makes it possible to have overhead down to 1 byte for
705allocations which are powers of two (and appear quite often).
706
707Expected memory savings (with 8-byte alignment in C<alignbytes>) is
708about 20% for typical Perl usage. Expected slowdown due to additional
709malloc overhead is in fractions of a percent (hard to measure, because
710of the effect of saved memory on speed).
711
712=item -DTWO_POT_OPTIMIZE
713
714Similarly to C<PACK_MALLOC>, this macro improves allocations of data
715with size close to a power of two; but this works for big allocations
716(starting with 16K by default). Such allocations are typical for big
717hashes and special-purpose scripts, especially image processing.
718
719On recent systems, the fact that perl requires 2M from system for 1M
720allocation will not affect speed of execution, since the tail of such
721a chunk is not going to be touched (and thus will not require real
722memory). However, it may result in a premature out-of-memory error.
723So if you will be manipulating very large blocks with sizes close to
724powers of two, it would be wise to define this macro.
725
726Expected saving of memory is 0-100% (100% in applications which
727require most memory in such 2**n chunks); expected slowdown is
728negligible.
729
730=back
731
732=head2 Miscellaneous efficiency enhancements
733
734Functions that have an empty prototype and that do nothing but return
735a fixed value are now inlined (e.g. C<sub PI () { 3.14159 }>).
736
737Each unique hash key is only allocated once, no matter how many hashes
738have an entry with that key. So even if you have 100 copies of the
739same hash, the hash keys never have to be reallocated.
740
741=head1 Support for More Operating Systems
742
743Support for the following operating systems is new in Perl 5.004.
744
745=head2 Win32
746
747Perl 5.004 now includes support for building a "native" perl under
748Windows NT, using the Microsoft Visual C++ compiler (versions 2.0
749and above) or the Borland C++ compiler (versions 5.02 and above).
750The resulting perl can be used under Windows 95 (if it
751is installed in the same directory locations as it got installed
752in Windows NT). This port includes support for perl extension
753building tools like L<MakeMaker> and L<h2xs>, so that many extensions
754available on the Comprehensive Perl Archive Network (CPAN) can now be
755readily built under Windows NT. See http://www.perl.com/ for more
756information on CPAN, and L<README.win32> for more details on how to
757get started with building this port.
758
759There is also support for building perl under the Cygwin32 environment.
760Cygwin32 is a set of GNU tools that make it possible to compile and run
761many UNIX programs under Windows NT by providing a mostly UNIX-like
762interface for compilation and execution. See L<README.cygwin32> for
763more details on this port, and how to obtain the Cygwin32 toolkit.
764
765=head2 Plan 9
766
767See L<README.plan9>.
768
769=head2 QNX
770
771See L<README.qnx>.
772
773=head2 AmigaOS
774
775See L<README.amigaos>.
776
777=head1 Pragmata
778
779Six new pragmatic modules exist:
780
781=over
782
783=item use autouse MODULE => qw(sub1 sub2 sub3)
784
785Defers C<require MODULE> until someone calls one of the specified
786subroutines (which must be exported by MODULE). This pragma should be
787used with caution, and only when necessary.
788
789=item use blib
790
791=item use blib 'dir'
792
793Looks for MakeMaker-like I<'blib'> directory structure starting in
794I<dir> (or current directory) and working back up to five levels of
795parent directories.
796
797Intended for use on command line with B<-M> option as a way of testing
798arbitrary scripts against an uninstalled version of a package.
799
800=item use constant NAME => VALUE
801
802Provides a convenient interface for creating compile-time constants,
803See L<perlsub/"Constant Functions">.
804
805=item use locale
806
807Tells the compiler to enable (or disable) the use of POSIX locales for
808builtin operations.
809
810When C<use locale> is in effect, the current LC_CTYPE locale is used
811for regular expressions and case mapping; LC_COLLATE for string
812ordering; and LC_NUMERIC for numeric formating in printf and sprintf
813(but B<not> in print). LC_NUMERIC is always used in write, since
814lexical scoping of formats is problematic at best.
815
816Each C<use locale> or C<no locale> affects statements to the end of
817the enclosing BLOCK or, if not inside a BLOCK, to the end of the
818current file. Locales can be switched and queried with
819POSIX::setlocale().
820
821See L<perllocale> for more information.
822
823=item use ops
824
825Disable unsafe opcodes, or any named opcodes, when compiling Perl code.
826
827=item use vmsish
828
829Enable VMS-specific language features. Currently, there are three
830VMS-specific features available: 'status', which makes C<$?> and
831C<system> return genuine VMS status values instead of emulating POSIX;
832'exit', which makes C<exit> take a genuine VMS status value instead of
833assuming that C<exit 1> is an error; and 'time', which makes all times
834relative to the local time zone, in the VMS tradition.
835
836=back
837
838=head1 Modules
839
840=head2 Required Updates
841
842Though Perl 5.004 is compatible with almost all modules that work
843with Perl 5.003, there are a few exceptions:
844
845 Module Required Version for Perl 5.004
846 ------ -------------------------------
847 Filter Filter-1.12
848 LWP libwww-perl-5.08
849 Tk Tk400.202 (-w makes noise)
850
851Also, the majordomo mailing list program, version 1.94.1, doesn't work
852with Perl 5.004 (nor with perl 4), because it executes an invalid
853regular expression. This bug is fixed in majordomo version 1.94.2.
854
855=head2 Installation directories
856
857The I<installperl> script now places the Perl source files for
858extensions in the architecture-specific library directory, which is
859where the shared libraries for extensions have always been. This
860change is intended to allow administrators to keep the Perl 5.004
861library directory unchanged from a previous version, without running
862the risk of binary incompatibility between extensions' Perl source and
863shared libraries.
864
865=head2 Module information summary
866
867Brand new modules, arranged by topic rather than strictly
868alphabetically:
869
870 CGI.pm Web server interface ("Common Gateway Interface")
871 CGI/Apache.pm Support for Apache's Perl module
872 CGI/Carp.pm Log server errors with helpful context
873 CGI/Fast.pm Support for FastCGI (persistent server process)
874 CGI/Push.pm Support for server push
875 CGI/Switch.pm Simple interface for multiple server types
876
877 CPAN Interface to Comprehensive Perl Archive Network
878 CPAN::FirstTime Utility for creating CPAN configuration file
879 CPAN::Nox Runs CPAN while avoiding compiled extensions
880
881 IO.pm Top-level interface to IO::* classes
882 IO/File.pm IO::File extension Perl module
883 IO/Handle.pm IO::Handle extension Perl module
884 IO/Pipe.pm IO::Pipe extension Perl module
885 IO/Seekable.pm IO::Seekable extension Perl module
886 IO/Select.pm IO::Select extension Perl module
887 IO/Socket.pm IO::Socket extension Perl module
888
889 Opcode.pm Disable named opcodes when compiling Perl code
890
891 ExtUtils/Embed.pm Utilities for embedding Perl in C programs
892 ExtUtils/testlib.pm Fixes up @INC to use just-built extension
893
894 FindBin.pm Find path of currently executing program
895
896 Class/Struct.pm Declare struct-like datatypes as Perl classes
897 File/stat.pm By-name interface to Perl's builtin stat
898 Net/hostent.pm By-name interface to Perl's builtin gethost*
899 Net/netent.pm By-name interface to Perl's builtin getnet*
900 Net/protoent.pm By-name interface to Perl's builtin getproto*
901 Net/servent.pm By-name interface to Perl's builtin getserv*
902 Time/gmtime.pm By-name interface to Perl's builtin gmtime
903 Time/localtime.pm By-name interface to Perl's builtin localtime
904 Time/tm.pm Internal object for Time::{gm,local}time
905 User/grent.pm By-name interface to Perl's builtin getgr*
906 User/pwent.pm By-name interface to Perl's builtin getpw*
907
908 Tie/RefHash.pm Base class for tied hashes with references as keys
909
910 UNIVERSAL.pm Base class for *ALL* classes
911
912=head2 Fcntl
913
914New constants in the existing Fcntl modules are now supported,
915provided that your operating system happens to support them:
916
917 F_GETOWN F_SETOWN
918 O_ASYNC O_DEFER O_DSYNC O_FSYNC O_SYNC
919 O_EXLOCK O_SHLOCK
920
921These constants are intended for use with the Perl operators sysopen()
922and fcntl() and the basic database modules like SDBM_File. For the
923exact meaning of these and other Fcntl constants please refer to your
924operating system's documentation for fcntl() and open().
925
926In addition, the Fcntl module now provides these constants for use
927with the Perl operator flock():
928
929 LOCK_SH LOCK_EX LOCK_NB LOCK_UN
930
931These constants are defined in all environments (because where there is
932no flock() system call, Perl emulates it). However, for historical
933reasons, these constants are not exported unless they are explicitly
934requested with the ":flock" tag (e.g. C<use Fcntl ':flock'>).
935
936=head2 IO
937
938The IO module provides a simple mechanism to load all of the IO modules at one
939go. Currently this includes:
940
941 IO::Handle
942 IO::Seekable
943 IO::File
944 IO::Pipe
945 IO::Socket
946
947For more information on any of these modules, please see its
948respective documentation.
949
950=head2 Math::Complex
951
952The Math::Complex module has been totally rewritten, and now supports
953more operations. These are overloaded:
954
955 + - * / ** <=> neg ~ abs sqrt exp log sin cos atan2 "" (stringify)
956
957And these functions are now exported:
958
959 pi i Re Im arg
960 log10 logn ln cbrt root
961 tan
962 csc sec cot
963 asin acos atan
964 acsc asec acot
965 sinh cosh tanh
966 csch sech coth
967 asinh acosh atanh
968 acsch asech acoth
969 cplx cplxe
970
971=head2 Math::Trig
972
973This new module provides a simpler interface to parts of Math::Complex for
974those who need trigonometric functions only for real numbers.
975
976=head2 DB_File
977
978There have been quite a few changes made to DB_File. Here are a few of
979the highlights:
980
981=over
982
983=item *
984
985Fixed a handful of bugs.
986
987=item *
988
989By public demand, added support for the standard hash function exists().
990
991=item *
992
993Made it compatible with Berkeley DB 1.86.
994
995=item *
996
997Made negative subscripts work with RECNO interface.
998
999=item *
1000
1001Changed the default flags from O_RDWR to O_CREAT|O_RDWR and the default
1002mode from 0640 to 0666.
1003
1004=item *
1005
1006Made DB_File automatically import the open() constants (O_RDWR,
1007O_CREAT etc.) from Fcntl, if available.
1008
1009=item *
1010
1011Updated documentation.
1012
1013=back
1014
1015Refer to the HISTORY section in DB_File.pm for a complete list of
1016changes. Everything after DB_File 1.01 has been added since 5.003.
1017
1018=head2 Net::Ping
1019
1020Major rewrite - support added for both udp echo and real icmp pings.
1021
1022=head2 Object-oriented overrides for builtin operators
1023
1024Many of the Perl builtins returning lists now have
1025object-oriented overrides. These are:
1026
1027 File::stat
1028 Net::hostent
1029 Net::netent
1030 Net::protoent
1031 Net::servent
1032 Time::gmtime
1033 Time::localtime
1034 User::grent
1035 User::pwent
1036
1037For example, you can now say
1038
1039 use File::stat;
1040 use User::pwent;
1041 $his = (stat($filename)->st_uid == pwent($whoever)->pw_uid);
1042
1043=head1 Utility Changes
1044
1045=head2 pod2html
1046
1047=over
1048
1049=item Sends converted HTML to standard output
1050
1051The I<pod2html> utility included with Perl 5.004 is entirely new.
1052By default, it sends the converted HTML to its standard output,
1053instead of writing it to a file like Perl 5.003's I<pod2html> did.
1054Use the B<--outfile=FILENAME> option to write to a file.
1055
1056=back
1057
1058=head2 xsubpp
1059
1060=over
1061
1062=item C<void> XSUBs now default to returning nothing
1063
1064Due to a documentation/implementation bug in previous versions of
1065Perl, XSUBs with a return type of C<void> have actually been
1066returning one value. Usually that value was the GV for the XSUB,
1067but sometimes it was some already freed or reused value, which would
1068sometimes lead to program failure.
1069
1070In Perl 5.004, if an XSUB is declared as returning C<void>, it
1071actually returns no value, i.e. an empty list (though there is a
1072backward-compatibility exception; see below). If your XSUB really
1073does return an SV, you should give it a return type of C<SV *>.
1074
1075For backward compatibility, I<xsubpp> tries to guess whether a
1076C<void> XSUB is really C<void> or if it wants to return an C<SV *>.
1077It does so by examining the text of the XSUB: if I<xsubpp> finds
1078what looks like an assignment to C<ST(0)>, it assumes that the
1079XSUB's return type is really C<SV *>.
1080
1081=back
1082
1083=head1 C Language API Changes
1084
1085=over
1086
1087=item C<gv_fetchmethod> and C<perl_call_sv>
1088
1089The C<gv_fetchmethod> function finds a method for an object, just like
1090in Perl 5.003. The GV it returns may be a method cache entry.
1091However, in Perl 5.004, method cache entries are not visible to users;
1092therefore, they can no longer be passed directly to C<perl_call_sv>.
1093Instead, you should use the C<GvCV> macro on the GV to extract its CV,
1094and pass the CV to C<perl_call_sv>.
1095
1096The most likely symptom of passing the result of C<gv_fetchmethod> to
1097C<perl_call_sv> is Perl's producing an "Undefined subroutine called"
1098error on the I<second> call to a given method (since there is no cache
1099on the first call).
1100
1101=item C<perl_eval_pv>
1102
1103A new function handy for eval'ing strings of Perl code inside C code.
1104This function returns the value from the eval statement, which can
1105be used instead of fetching globals from the symbol table. See
1106L<perlguts>, L<perlembed> and L<perlcall> for details and examples.
1107
1108=item Extended API for manipulating hashes
1109
1110Internal handling of hash keys has changed. The old hashtable API is
1111still fully supported, and will likely remain so. The additions to the
1112API allow passing keys as C<SV*>s, so that C<tied> hashes can be given
1113real scalars as keys rather than plain strings (nontied hashes still
1114can only use strings as keys). New extensions must use the new hash
1115access functions and macros if they wish to use C<SV*> keys. These
1116additions also make it feasible to manipulate C<HE*>s (hash entries),
1117which can be more efficient. See L<perlguts> for details.
1118
1119=back
1120
1121=head1 Documentation Changes
1122
1123Many of the base and library pods were updated. These
1124new pods are included in section 1:
1125
1126=over
1127
1128=item L<perldelta>
1129
1130This document.
1131
1132=item L<perlfaq>
1133
1134Frequently asked questions.
1135
1136=item L<perllocale>
1137
1138Locale support (internationalization and localization).
1139
1140=item L<perltoot>
1141
1142Tutorial on Perl OO programming.
1143
1144=item L<perlapio>
1145
1146Perl internal IO abstraction interface.
1147
1148=item L<perlmodlib>
1149
1150Perl module library and recommended practice for module creation.
1151Extracted from L<perlmod> (which is much smaller as a result).
1152
1153=item L<perldebug>
1154
1155Although not new, this has been massively updated.
1156
1157=item L<perlsec>
1158
1159Although not new, this has been massively updated.
1160
1161=back
1162
1163=head1 New Diagnostics
1164
1165Several new conditions will trigger warnings that were
1166silent before. Some only affect certain platforms.
1167The following new warnings and errors outline these.
1168These messages are classified as follows (listed in
1169increasing order of desperation):
1170
1171 (W) A warning (optional).
1172 (D) A deprecation (optional).
1173 (S) A severe warning (mandatory).
1174 (F) A fatal error (trappable).
1175 (P) An internal error you should never see (trappable).
1176 (X) A very fatal error (nontrappable).
1177 (A) An alien error message (not generated by Perl).
1178
1179=over
1180
1181=item "my" variable %s masks earlier declaration in same scope
1182
1183(W) A lexical variable has been redeclared in the same scope, effectively
1184eliminating all access to the previous instance. This is almost always
1185a typographical error. Note that the earlier variable will still exist
1186until the end of the scope or until all closure referents to it are
1187destroyed.
1188
1189=item %s argument is not a HASH element or slice
1190
1191(F) The argument to delete() must be either a hash element, such as
1192
1193 $foo{$bar}
1194 $ref->[12]->{"susie"}
1195
1196or a hash slice, such as
1197
1198 @foo{$bar, $baz, $xyzzy}
1199 @{$ref->[12]}{"susie", "queue"}
1200
1201=item Allocation too large: %lx
1202
1203(X) You can't allocate more than 64K on an MS-DOS machine.
1204
1205=item Allocation too large
1206
1207(F) You can't allocate more than 2^31+"small amount" bytes.
1208
1209=item Applying %s to %s will act on scalar(%s)
1210
1211(W) The pattern match (//), substitution (s///), and transliteration (tr///)
1212operators work on scalar values. If you apply one of them to an array
1213or a hash, it will convert the array or hash to a scalar value -- the
1214length of an array, or the population info of a hash -- and then work on
1215that scalar value. This is probably not what you meant to do. See
1216L<perlfunc/grep> and L<perlfunc/map> for alternatives.
1217
1218=item Attempt to free nonexistent shared string
1219
1220(P) Perl maintains a reference counted internal table of strings to
1221optimize the storage and access of hash keys and other strings. This
1222indicates someone tried to decrement the reference count of a string
1223that can no longer be found in the table.
1224
1225=item Attempt to use reference as lvalue in substr
1226
1227(W) You supplied a reference as the first argument to substr() used
1228as an lvalue, which is pretty strange. Perhaps you forgot to
1229dereference it first. See L<perlfunc/substr>.
1230
1231=item Bareword "%s" refers to nonexistent package
1232
1233(W) You used a qualified bareword of the form C<Foo::>, but
1234the compiler saw no other uses of that namespace before that point.
1235Perhaps you need to predeclare a package?
1236
1237=item Can't redefine active sort subroutine %s
1238
1239(F) Perl optimizes the internal handling of sort subroutines and keeps
1240pointers into them. You tried to redefine one such sort subroutine when it
1241was currently active, which is not allowed. If you really want to do
1242this, you should write C<sort { &func } @x> instead of C<sort func @x>.
1243
1244=item Can't use bareword ("%s") as %s ref while "strict refs" in use
1245
1246(F) Only hard references are allowed by "strict refs". Symbolic references
1247are disallowed. See L<perlref>.
1248
1249=item Cannot resolve method `%s' overloading `%s' in package `%s'
1250
1251(P) Internal error trying to resolve overloading specified by a method
1252name (as opposed to a subroutine reference).
1253
1254=item Constant subroutine %s redefined
1255
1256(S) You redefined a subroutine which had previously been eligible for
1257inlining. See L<perlsub/"Constant Functions"> for commentary and
1258workarounds.
1259
1260=item Constant subroutine %s undefined
1261
1262(S) You undefined a subroutine which had previously been eligible for
1263inlining. See L<perlsub/"Constant Functions"> for commentary and
1264workarounds.
1265
1266=item Copy method did not return a reference
1267
1268(F) The method which overloads "=" is buggy. See L<overload/Copy Constructor>.
1269
1270=item Died
1271
1272(F) You passed die() an empty string (the equivalent of C<die "">) or
1273you called it with no args and both C<$@> and C<$_> were empty.
1274
1275=item Exiting pseudo-block via %s
1276
1277(W) You are exiting a rather special block construct (like a sort block or
1278subroutine) by unconventional means, such as a goto, or a loop control
1279statement. See L<perlfunc/sort>.
1280
1281=item Identifier too long
1282
1283(F) Perl limits identifiers (names for variables, functions, etc.) to
1284252 characters for simple names, somewhat more for compound names (like
1285C<$A::B>). You've exceeded Perl's limits. Future versions of Perl are
1286likely to eliminate these arbitrary limitations.
1287
1288=item Illegal character %s (carriage return)
1289
1290(F) A carriage return character was found in the input. This is an
1291error, and not a warning, because carriage return characters can break
1292multi-line strings, including here documents (e.g., C<print E<lt>E<lt>EOF;>).
1293
1294=item Illegal switch in PERL5OPT: %s
1295
1296(X) The PERL5OPT environment variable may only be used to set the
1297following switches: B<-[DIMUdmw]>.
1298
1299=item Integer overflow in hex number
1300
1301(S) The literal hex number you have specified is too big for your
1302architecture. On a 32-bit architecture the largest hex literal is
13030xFFFFFFFF.
1304
1305=item Integer overflow in octal number
1306
1307(S) The literal octal number you have specified is too big for your
1308architecture. On a 32-bit architecture the largest octal literal is
1309037777777777.
1310
1311=item internal error: glob failed
1312
1313(P) Something went wrong with the external program(s) used for C<glob>
1314and C<E<lt>*.cE<gt>>. This may mean that your csh (C shell) is
1315broken. If so, you should change all of the csh-related variables in
1316config.sh: If you have tcsh, make the variables refer to it as if it
1317were csh (e.g. C<full_csh='/usr/bin/tcsh'>); otherwise, make them all
1318empty (except that C<d_csh> should be C<'undef'>) so that Perl will
1319think csh is missing. In either case, after editing config.sh, run
1320C<./Configure -S> and rebuild Perl.
1321
1322=item Invalid conversion in %s: "%s"
1323
1324(W) Perl does not understand the given format conversion.
1325See L<perlfunc/sprintf>.
1326
1327=item Invalid type in pack: '%s'
1328
1329(F) The given character is not a valid pack type. See L<perlfunc/pack>.
1330
1331=item Invalid type in unpack: '%s'
1332
1333(F) The given character is not a valid unpack type. See L<perlfunc/unpack>.
1334
1335=item Name "%s::%s" used only once: possible typo
1336
1337(W) Typographical errors often show up as unique variable names.
1338If you had a good reason for having a unique name, then just mention
1339it again somehow to suppress the message (the C<use vars> pragma is
1340provided for just this purpose).
1341
1342=item Null picture in formline
1343
1344(F) The first argument to formline must be a valid format picture
1345specification. It was found to be empty, which probably means you
1346supplied it an uninitialized value. See L<perlform>.
1347
1348=item Offset outside string
1349
1350(F) You tried to do a read/write/send/recv operation with an offset
1351pointing outside the buffer. This is difficult to imagine.
1352The sole exception to this is that C<sysread()>ing past the buffer
1353will extend the buffer and zero pad the new area.
1354
1355=item Out of memory!
1356
1357(X|F) The malloc() function returned 0, indicating there was insufficient
1358remaining memory (or virtual memory) to satisfy the request.
1359
1360The request was judged to be small, so the possibility to trap it
1361depends on the way Perl was compiled. By default it is not trappable.
1362However, if compiled for this, Perl may use the contents of C<$^M> as
1363an emergency pool after die()ing with this message. In this case the
1364error is trappable I<once>.
1365
1366=item Out of memory during request for %s
1367
1368(F) The malloc() function returned 0, indicating there was insufficient
1369remaining memory (or virtual memory) to satisfy the request. However,
1370the request was judged large enough (compile-time default is 64K), so
1371a possibility to shut down by trapping this error is granted.
1372
1373=item panic: frexp
1374
1375(P) The library function frexp() failed, making printf("%f") impossible.
1376
1377=item Possible attempt to put comments in qw() list
1378
1379(W) qw() lists contain items separated by whitespace; as with literal
1380strings, comment characters are not ignored, but are instead treated
1381as literal data. (You may have used different delimiters than the
1382exclamation marks parentheses shown here; braces are also frequently
1383used.)
1384
1385You probably wrote something like this:
1386
1387 @list = qw(
1388 a # a comment
1389 b # another comment
1390 );
1391
1392when you should have written this:
1393
1394 @list = qw(
1395 a
1396 b
1397 );
1398
1399If you really want comments, build your list the
1400old-fashioned way, with quotes and commas:
1401
1402 @list = (
1403 'a', # a comment
1404 'b', # another comment
1405 );
1406
1407=item Possible attempt to separate words with commas
1408
1409(W) qw() lists contain items separated by whitespace; therefore commas
1410aren't needed to separate the items. (You may have used different
1411delimiters than the parentheses shown here; braces are also frequently
1412used.)
1413
1414You probably wrote something like this:
1415
1416 qw! a, b, c !;
1417
1418which puts literal commas into some of the list items. Write it without
1419commas if you don't want them to appear in your data:
1420
1421 qw! a b c !;
1422
1423=item Scalar value @%s{%s} better written as $%s{%s}
1424
1425(W) You've used a hash slice (indicated by @) to select a single element of
1426a hash. Generally it's better to ask for a scalar value (indicated by $).
1427The difference is that C<$foo{&bar}> always behaves like a scalar, both when
1428assigning to it and when evaluating its argument, while C<@foo{&bar}> behaves
1429like a list when you assign to it, and provides a list context to its
1430subscript, which can do weird things if you're expecting only one subscript.
1431
1432=item Stub found while resolving method `%s' overloading `%s' in package `%s'
1433
1434(P) Overloading resolution over @ISA tree may be broken by importing stubs.
1435Stubs should never be implicitely created, but explicit calls to C<can>
1436may break this.
1437
1438=item Too late for "B<-T>" option
1439
1440(X) The #! line (or local equivalent) in a Perl script contains the
1441B<-T> option, but Perl was not invoked with B<-T> in its argument
1442list. This is an error because, by the time Perl discovers a B<-T> in
1443a script, it's too late to properly taint everything from the
1444environment. So Perl gives up.
1445
1446=item untie attempted while %d inner references still exist
1447
1448(W) A copy of the object returned from C<tie> (or C<tied>) was still
1449valid when C<untie> was called.
1450
1451=item Unrecognized character %s
1452
1453(F) The Perl parser has no idea what to do with the specified character
1454in your Perl script (or eval). Perhaps you tried to run a compressed
1455script, a binary program, or a directory as a Perl program.
1456
1457=item Unsupported function fork
1458
1459(F) Your version of executable does not support forking.
1460
1461Note that under some systems, like OS/2, there may be different flavors of
1462Perl executables, some of which may support fork, some not. Try changing
1463the name you call Perl by to C<perl_>, C<perl__>, and so on.
1464
1465=item Use of "$$<digit>" to mean "${$}<digit>" is deprecated
1466
1467(D) Perl versions before 5.004 misinterpreted any type marker followed
1468by "$" and a digit. For example, "$$0" was incorrectly taken to mean
1469"${$}0" instead of "${$0}". This bug is (mostly) fixed in Perl 5.004.
1470
1471However, the developers of Perl 5.004 could not fix this bug completely,
1472because at least two widely-used modules depend on the old meaning of
1473"$$0" in a string. So Perl 5.004 still interprets "$$<digit>" in the
1474old (broken) way inside strings; but it generates this message as a
1475warning. And in Perl 5.005, this special treatment will cease.
1476
1477=item Value of %s can be "0"; test with defined()
1478
1479(W) In a conditional expression, you used <HANDLE>, <*> (glob), C<each()>,
1480or C<readdir()> as a boolean value. Each of these constructs can return a
1481value of "0"; that would make the conditional expression false, which is
1482probably not what you intended. When using these constructs in conditional
1483expressions, test their values with the C<defined> operator.
1484
1485=item Variable "%s" may be unavailable
1486
1487(W) An inner (nested) I<anonymous> subroutine is inside a I<named>
1488subroutine, and outside that is another subroutine; and the anonymous
1489(innermost) subroutine is referencing a lexical variable defined in
1490the outermost subroutine. For example:
1491
1492 sub outermost { my $a; sub middle { sub { $a } } }
1493
1494If the anonymous subroutine is called or referenced (directly or
1495indirectly) from the outermost subroutine, it will share the variable
1496as you would expect. But if the anonymous subroutine is called or
1497referenced when the outermost subroutine is not active, it will see
1498the value of the shared variable as it was before and during the
1499*first* call to the outermost subroutine, which is probably not what
1500you want.
1501
1502In these circumstances, it is usually best to make the middle
1503subroutine anonymous, using the C<sub {}> syntax. Perl has specific
1504support for shared variables in nested anonymous subroutines; a named
1505subroutine in between interferes with this feature.
1506
1507=item Variable "%s" will not stay shared
1508
1509(W) An inner (nested) I<named> subroutine is referencing a lexical
1510variable defined in an outer subroutine.
1511
1512When the inner subroutine is called, it will probably see the value of
1513the outer subroutine's variable as it was before and during the
1514*first* call to the outer subroutine; in this case, after the first
1515call to the outer subroutine is complete, the inner and outer
1516subroutines will no longer share a common value for the variable. In
1517other words, the variable will no longer be shared.
1518
1519Furthermore, if the outer subroutine is anonymous and references a
1520lexical variable outside itself, then the outer and inner subroutines
1521will I<never> share the given variable.
1522
1523This problem can usually be solved by making the inner subroutine
1524anonymous, using the C<sub {}> syntax. When inner anonymous subs that
1525reference variables in outer subroutines are called or referenced,
1526they are automatically rebound to the current values of such
1527variables.
1528
1529=item Warning: something's wrong
1530
1531(W) You passed warn() an empty string (the equivalent of C<warn "">) or
1532you called it with no args and C<$_> was empty.
1533
1534=item Ill-formed logical name |%s| in prime_env_iter
1535
1536(W) A warning peculiar to VMS. A logical name was encountered when preparing
1537to iterate over %ENV which violates the syntactic rules governing logical
1538names. Since it cannot be translated normally, it is skipped, and will not
1539appear in %ENV. This may be a benign occurrence, as some software packages
1540might directly modify logical name tables and introduce nonstandard names,
1541or it may indicate that a logical name table has been corrupted.
1542
1543=item Got an error from DosAllocMem
1544
1545(P) An error peculiar to OS/2. Most probably you're using an obsolete
1546version of Perl, and this should not happen anyway.
1547
1548=item Malformed PERLLIB_PREFIX
1549
1550(F) An error peculiar to OS/2. PERLLIB_PREFIX should be of the form
1551
1552 prefix1;prefix2
1553
1554or
1555
1556 prefix1 prefix2
1557
1558with nonempty prefix1 and prefix2. If C<prefix1> is indeed a prefix
1559of a builtin library search path, prefix2 is substituted. The error
1560may appear if components are not found, or are too long. See
1561"PERLLIB_PREFIX" in F<README.os2>.
1562
1563=item PERL_SH_DIR too long
1564
1565(F) An error peculiar to OS/2. PERL_SH_DIR is the directory to find the
1566C<sh>-shell in. See "PERL_SH_DIR" in F<README.os2>.
1567
1568=item Process terminated by SIG%s
1569
1570(W) This is a standard message issued by OS/2 applications, while *nix
1571applications die in silence. It is considered a feature of the OS/2
1572port. One can easily disable this by appropriate sighandlers, see
1573L<perlipc/"Signals">. See also "Process terminated by SIGTERM/SIGINT"
1574in F<README.os2>.
1575
1576=back
1577
1578=head1 BUGS
1579
1580If you find what you think is a bug, you might check the headers of
1581recently posted articles in the comp.lang.perl.misc newsgroup.
1582There may also be information at http://www.perl.com/perl/, the Perl
1583Home Page.
1584
1585If you believe you have an unreported bug, please run the B<perlbug>
1586program included with your release. Make sure you trim your bug down
1587to a tiny but sufficient test case. Your bug report, along with the
1588output of C<perl -V>, will be sent off to <F<perlbug@perl.com>> to be
1589analysed by the Perl porting team.
1590
1591=head1 SEE ALSO
1592
1593The F<Changes> file for exhaustive details on what changed.
1594
1595The F<INSTALL> file for how to build Perl. This file has been
1596significantly updated for 5.004, so even veteran users should
1597look through it.
1598
1599The F<README> file for general stuff.
1600
1601The F<Copying> file for copyright information.
1602
1603=head1 HISTORY
1604
1605Constructed by Tom Christiansen, grabbing material with permission
1606from innumerable contributors, with kibitzing by more than a few Perl
1607porters.
1608
1609Last update: Wed May 14 11:14:09 EDT 1997