--- /dev/null
+If you read this file _as_is_, just ignore the funny characters you
+see. It is written in the POD format (see pod/perlpod.pod) which is
+specifically designed to be readable as is.
+
+=head1 NAME
+
+README.solaris - Perl version 5 on Solaris systems
+
+=head1 DESCRIPTION
+
+This document describes various features of Sun's Solaris operating system
+that will affect how Perl version 5 (hereafter just perl) is
+compiled and/or runs. Some issues relating to the older SunOS 4.x are
+also discussed, though they may be out of date.
+
+For the most part, everything should just work.
+
+Starting with Solaris 8, perl5.00503 (or higher) is supplied with the
+operating system, so you might not even need to build a newer version
+of perl at all. The Sun-supplied version is installed in /usr/perl5
+with a link to /usr/bin/perl. Do not disturb that installation unless
+you really know what you are doing. If you remove the perl supplied
+with the OS, there is a good chance you will render some bits of your
+system inoperable. If you wish to install a newer version of perl,
+install it under a different prefix from /usr/perl5. Common prefixes
+to use are /usr/local and /opt/perl.
+
+=head2 Solaris Version Numbers.
+
+For consistency with common usage, perl's Configure script performs
+some minor manipulations on the operating system name and version
+number as reported by uname. Here's a partial translation table:
+
+ Sun: perl's Configure:
+ uname uname -r Name osname osvers
+ SunOS 4.1.3 SunOS 4.1.3 sunos 4.1.3
+ SunOS 5.6 Solaris 2.6 solaris 2.6
+ SunOS 5.8 Solaris 8 solaris 2.8
+
+=head1 RESOURCES
+
+There are many, many source for Solaris information. A few of the
+important ones for perl:
+
+=over 4
+
+=item Solaris FAQ
+
+The Solaris FAQ is available at
+L<http://www.science.uva.nl/pub/solaris/solaris2.html>.
+
+=item Precompiled Binaries
+
+Precompiled binaries, links to many sites, and much, much more is
+available at L<http://www.sunfreeware.com>.
+
+=item Solaris Documentation
+
+All Solaris documentation is available on-line at L<http://docs.sun.com>.
+
+=back
+
+=head1 SETTING UP
+
+=head2 File Extraction Problems.
+
+Be sure to use a tar program compiled under Solaris (not SunOS 4.x)
+to extract the perl-5.x.x.tar.gz file. Do not use GNU tar compiled
+for SunOS4 on Solaris. (GNU tar compiled for Solaris should be fine.)
+When you run SunOS4 binaries on Solaris, the run-time system magically
+alters pathnames matching m#lib/locale# so that when tar tries to create
+lib/locale.pm, a file named lib/oldlocale.pm gets created instead.
+If you ignore this advice and use a a SunOS4-compiled tar anyway, you
+must find the incorrectly renamed file and move it back to lib/locale.pm.
+
+=head2 Compiler and Related Tools.
+
+You must use an ANSI C compiler to build perl. Perl can be compiled
+with either Sun's add-on C compiler or with gcc. The C compiler that
+shipped with SunOS4 will not do.
+
+=head3 Include /usr/ccs/bin/ in your PATH.
+
+Several tools needed to build perl are located in /usr/ccs/bin/: ar,
+as, ld, and make. Make sure that /usr/ccs/bin/ is in your PATH.
+
+You need to make sure the following packages are installed
+(this info is extracted from the Solaris FAQ):
+
+for tools (sccs, lex, yacc, make, nm, truss, ld, as): SUNWbtool,
+SUNWsprot, SUNWtoo
+
+for libraries & headers: SUNWhea, SUNWarc, SUNWlibm, SUNWlibms, SUNWdfbh,
+SUNWcg6h, SUNWxwinc, SUNWolinc
+
+for 64 bit development: SUNWarcx, SUNWbtoox, SUNWdplx, SUNWscpux,
+SUNWsprox, SUNWtoox, SUNWlmsx, SUNWlmx, SUNWlibCx
+
+=head3 Avoid /usr/ucb/cc.
+
+You don't need to have /usr/ucb/ in your PATH to build perl. If you
+want /usr/ucb/ in your PATH anyway, make sure that /usr/ucb/cc is NOT
+in your PATH before the real C compiler.
+
+=head3 Sun's C Compiler
+
+If you use Sun's C compiler, make sure the correct directory
+(usually /opt/SUNWspro/bin/) is in your PATH before /usr/ucb/.
+
+=head3 GCC
+
+If you use gcc, make sure your installation is recent and
+complete. As a point of reference, perl-5.6.0 built fine with
+gcc-2.8.1 on both Solaris 2.6 and Solaris 8. You'll be able to
+Configure perl with
+
+ sh Configure -Dcc=gcc
+
+If you have updated your Solaris version, you may also have to update
+your GCC. For example, if you are running Solaris 2.6 and your gcc is
+installed under /usr/local, check in /usr/local/lib/gcc-lib and make
+sure you have the appropriate directory sparc-sun-solaris2.6/. If gcc's
+directory is for a different version of Solaris than you are running,
+then you will need to rebuild gcc for your new version of Solaris.
+
+You can get a precompiled version of gcc from
+L<http://www.sunfreeware.com/>.
+
+=head3 GNU as and GNU ld
+
+The versions of as and ld supplied with Solaris work fine for building
+perl. There is normally no need to install the GNU versions.
+
+If you decide to ignore this advice and use the GNU versions anyway,
+then be sure that they are relatively recent. Versions newer than 2.7
+are apparently new enough. Older versions may have trouble with
+dynamic loading.
+
+If your gcc is configured to use GNU as and ld but you want to use the
+Solaris ones instead to build perl, then you'll need to add
+-B/usr/ccs/bin/ to the gcc command line. One convenient way to do
+that is with
+
+ sh Configure -Dcc='gcc -B/usr/ccs/bin/'
+
+Note that the trailing slash is required. This will result in some
+harmless error messages as Configure is run:
+
+ gcc: file path prefix `/usr/ccs/bin/' never used
+
+These messages may safely be ignored.
+(Note that for a SunOS4 system, you must use -B/bin/ instead.)
+
+Alternatively, you can use the GCC_EXEC_PREFIX environment variable to
+ensure that Sun's as and ld are used. Consult your gcc documentation
+for further information on the -B option and the GCC_EXEC_PREFIX variable.
+
+=head3 GNU make
+
+Sun's make works fine for building perl.
+If you wish to use GNU make anyway, be sure that the set-group-id bit is not
+set. If it is, then arrange your PATH so that /usr/ccs/bin/make is
+before GNU make or else have the system administrator disable the
+set-group-id bit on GNU make.
+
+=head3 Avoid libucb.
+
+Solaris provides some BSD-compatibility functions in /usr/ucblib/libucb.a.
+Perl will not build and run correctly if linked against -lucb since it
+contains routines that are incompatible with the standard Solaris libc.
+Normally this is not a problem since the solaris hints file prevents
+Configure from even looking in /usr/ucblib for libraries, and also
+explicitly omits -lucb.
+
+=head2 Environment
+
+=head3 PATH
+
+Make sure your PATH includes the compiler (/opt/SUNWspro/bin/ if you're
+using Sun's compiler) as well as /usr/ccs/bin/ to pick up the other
+development tools (such as make, ar, as, and ld). Make sure your path
+either doesn't include /usr/ucb or that it includes it after the
+compiler and compiler tools and other standard Solaris directories.
+You definitely don't want /usr/ucb/cc.
+
+=head3 LD_LIBRARY_PATH
+
+If you have the LD_LIBRARY_PATH environment variable set, be sure that
+it does NOT include /lib or /usr/lib. If you will be building
+extensions that call third-party shared libraries (e.g. Berkeley DB)
+then make sure that your LD_LIBRARY_PATH environment variable includes
+the directory with that library (e.g. /usr/local/lib).
+
+If you get an error message
+
+ dlopen: stub interception failed
+
+it is probably because your LD_LIBRARY_PATH environment variable
+includes a directory which is a symlink to /usr/lib (such as /lib).
+The reason this causes a problem is quite subtle. The file
+libdl.so.1.0 actually *only* contains functions which generate 'stub
+interception failed' errors! The runtime linker intercepts links to
+"/usr/lib/libdl.so.1.0" and links in internal implementations of those
+functions instead. [Thanks to Tim Bunce for this explanation.]
+
+=head1 RUN CONFIGURE.
+
+See the INSTALL file for general information regarding Configure.
+Only Solaris-specific issues are discussed here. Usually, the
+defaults should be fine.
+
+=head2 64-bit Issues.
+
+See the INSTALL file for general information regarding 64-bit compiles.
+In general, the defaults should be fine for most people.
+
+By default, perl-5.6.0 (or later) is compiled as a 32-bit application
+with largefile and long-long support.
+
+=head3 General 32-bit vs. 64-bit issues.
+
+Solaris 2.7 and above will run in either 32 bit or 64 bit mode, via a reboot.
+You can build 64 bit apps whilst running 32 bit mode and vice-versa.
+32 bit apps will run under Solaris running in either 32 or 64 bit mode.
+64 bit apps require Solaris to be running 64 bit mode
+
+Existing 32 bit apps are properly known as LP32, i.e. Longs and
+Pointers are 32 bit. 64-bit apps are more properly known as LP64.
+The discriminating feature of a LP64 bit app is its ability to utilise a
+64-bit address space. It is perfectly possible to have a LP32 bit app
+that supports both 64-bit integers (long long) and largefiles (> 2Gb),
+and this is the default for perl-5.6.0.
+
+For a more complete explanation of 64-bit issues, see the Solaris 64-bit
+Developer's Guide at http://docs.sun.com:80/ab2/coll.45.13/SOL64TRANS/
+
+You can detect the OS mode using "isainfo -v", e.g.
+
+ fubar$ isainfo -v # Ultra 30 in 64 bit mode
+ 64-bit sparcv9 applications
+ 32-bit sparc applications
+
+By default, perl will be compiled as a 32-bit application. Unless you
+want to allocate more than ~ 4Gb of memory inside Perl, you probably
+don't need Perl to be a 64-bit app.
+
+=head3 Large File Suppprt
+
+For Solaris 2.6 and onwards, there are two different ways for 32-bit
+applications to manipulate large files (files whose size is > 2Gbyte).
+(A 64-bit application automatically has largefile support built in
+by default.)
+
+First is the "transitional compilation environment", described in
+lfcompile64(5). According to the man page,
+
+ The transitional compilation environment exports all the
+ explicit 64-bit functions (xxx64()) and types in addition to
+ all the regular functions (xxx()) and types. Both xxx() and
+ xxx64() functions are available to the program source. A
+ 32-bit application must use the xxx64() functions in order
+ to access large files. See the lf64(5) manual page for a
+ complete listing of the 64-bit transitional interfaces.
+
+The transitional compilation environment is obtained with the
+following compiler and linker flags:
+
+ getconf LFS64_CFLAGS -D_LARGEFILE64_SOURCE
+ getconf LFS64_LDFLAG # nothing special needed
+ getconf LFS64_LIBS # nothing special needed
+
+Second is the "large file compilation environment", described in
+lfcompile(5). According to the man page,
+
+ Each interface named xxx() that needs to access 64-bit entities
+ to access large files maps to a xxx64() call in the
+ resulting binary. All relevant data types are defined to be
+ of correct size (for example, off_t has a typedef definition
+ for a 64-bit entity).
+
+ An application compiled in this environment is able to use
+ the xxx() source interfaces to access both large and small
+ files, rather than having to explicitly utilize the transitional
+ xxx64() interface calls to access large files.
+
+Two exceptions are fseek() and ftell(). 32-bit applications should
+use fseeko(3C) and ftello(3C). These will get automatically mapped
+to fseeko64() and ftello64().
+
+The large file compilation environment is obtained with
+
+ getconf LFS_CFLAGS -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
+ getconf LFS_LDFLAGS # nothing special needed
+ getconf LFS_LIBS # nothing special needed
+
+By default, perl uses the large file compilation environment and
+relies on Solaris to do the underlying mapping of interfaces.
+
+=head3 Building an LP64 Perl
+
+To compile a 64-bit application with a recent Sun Compiler, you need to
+use the flag "-xarch=v9". getconf(1) will tell you this, e.g.
+
+ fubar$ getconf -a | grep v9
+ XBS5_LP64_OFF64_CFLAGS: -xarch=v9
+ XBS5_LP64_OFF64_LDFLAGS: -xarch=v9
+ XBS5_LP64_OFF64_LINTFLAGS: -xarch=v9
+ XBS5_LPBIG_OFFBIG_CFLAGS: -xarch=v9
+ XBS5_LPBIG_OFFBIG_LDFLAGS: -xarch=v9
+ XBS5_LPBIG_OFFBIG_LINTFLAGS: -xarch=v9
+ _XBS5_LP64_OFF64_CFLAGS: -xarch=v9
+ _XBS5_LP64_OFF64_LDFLAGS: -xarch=v9
+ _XBS5_LP64_OFF64_LINTFLAGS: -xarch=v9
+ _XBS5_LPBIG_OFFBIG_CFLAGS: -xarch=v9
+ _XBS5_LPBIG_OFFBIG_LDFLAGS: -xarch=v9
+ _XBS5_LPBIG_OFFBIG_LINTFLAGS: -xarch=v9
+
+This flag is supported in Sun WorkShop Compilers 5.0 and onwards when
+used on Solaris 2.7 onwards.
+
+If you are using gcc, you need to use -mcpu=v9 -m64 instead. This
+option is not supported in the installation of gcc-2.8.1 that I have
+at hand, but is supported in more recent versions. [XXX -- any
+precise citations?]
+
+All this should be handled automatically by the hints file, if
+requested.
+
+If you do want to be able to allocate more than 4Gb memory inside
+perl, then you should use the Solaris malloc, since the perl
+malloc breaks when dealing with more than 2Gb of memory. You can do
+this with
+
+ sh Configure -Uusemymalloc
+
+=head3 Long Doubles.
+
+As of 5.6.0, long doubles are not working.
+
+=head2 Threads.
+
+It is possible to build a threaded version of perl on Solaris. The entire
+perl thread implementation is still experimental, however, so beware.
+Perl uses the sched_yield(3RT) function. In versions of Solaris up
+to 2.6, that function is in -lposix4. Starting with Solaris 7, it is
+in -lrt. The hints file should handle adding this automatically.
+
+=head2 Malloc Issues.
+
+You should not use perl's malloc if you are building with gcc. There
+are reports of core dumps, especially in the PDL module. The problem
+appears to go away under -DDEBUGGING, so it has been difficult to
+track down. Sun's compiler appears to be ok with or without perl's
+malloc. [XXX further investigation is needed here.]
+
+You should also not use perl's malloc if you are building perl as
+an LP64 application, since perl's malloc has trouble allocating more
+than 2Gb of memory.
+
+You can avoid perl's malloc by Configuring with
+
+ sh Configure -Uusemymalloc
+
+=head1 MAKE PROBLEMS.
+
+=over 4
+
+=item Dynamic Loading Problems With GNU as and GNU ld
+
+If you have problems with dynamic loading using gcc on SunOS or
+Solaris, and you are using GNU as and GNU ld, see the section
+L<"GNU as and GNU ld"> above.
+
+=item ld.so.1: ./perl: fatal: relocation error:
+
+If you get this message on SunOS or Solaris, and you're using gcc,
+it's probably the GNU as or GNU ld problem in the previous item
+L<"GNU as and GNU ld">.
+
+=item dlopen: stub interception failed
+
+The primary cause of the 'dlopen: stub interception failed' message is
+that the LD_LIBRARY_PATH environment variable includes a directory
+which is a symlink to /usr/lib (such as /lib). See
+L<"LD_LIBRARY_PATH"> above.
+
+=item #error "No DATAMODEL_NATIVE specified"
+
+This is a common error when trying to build perl on Solaris 2.6 with a
+gcc installation from Solaris 2.5 or 2.5.1. The Solaris header files
+changed, so you need to update your gcc installation. You can either
+rerun the fixincludes script from gcc or take the opportunity to
+update your gcc installation.
+
+=item sh: ar: not found
+
+This is a message from your shell telling you that the command 'ar'
+was not found. You need to check your PATH environment variable to
+make sure that it includes the directory with the 'ar' command. This
+is a common problem on Solaris, where 'ar' is in the /usr/ccs/bin/
+directory.
+
+=back
+
+=head1 MAKE TEST
+
+=head2 op/stat.t test 4
+
+op/stat.t test 4 may fail if you are on a tmpfs of some sort.
+Building in /tmp sometimes shows this behavior. The
+test suite detects if you are building in /tmp, but it may not be able
+to catch all tmpfs situations.
+
+=head1 PREBUILT BINARIES.
+
+You can pick up prebuilt binaries for Solaris from
+L<http://www.sunfreeware.com>, ActiveState L<http://www.activestate.com>,
+and L<http://www.perl.com> under the Binaries list at the top of the page.
+There are probably other sources as well. Please note that these sites
+are under the control of their respective owners, not the perl developers.
+
+=head1 RUNTIME ISSUES.
+
+=head2 Limits on Numbers of Open Files.
+
+The stdio(3C) manpage notes that only 255 files may be opened using
+fopen(), and only file descriptors 0 through 255 can be used in a
+stream. Since perl calls open() and then fdopen(3C) with the
+resulting file descriptor, perl is limited to 255 simultaneous open
+files.
+
+=head1 SOLARIS-SPECIFIC MODULES.
+
+See the modules under the Solaris:: namespace on CPAN,
+L<http://www.cpan.org/modules/by-module/Solaris/>.
+
+=head1 SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
+
+=head2 Proc::ProcessTable
+
+Proc::ProcessTable does not compile on Solaris with perl5.6.0 and higher
+if you have LARGEFILES defined. Since largefile support is the
+default in 5.6.0 and later, you have to take special steps to use this
+module.
+
+The problem is that various structures visible via procfs use off_t,
+and if you compile with largefile support these change from 32 bits to
+64 bits. Thus what you get back from procfs doesn't match up with
+the structures in perl, resulting in garbage. See proc(4) for further
+discussion.
+
+A fix for Proc::ProcessTable is to edit Makefile to
+explicitly remove the largefile flags from the ones MakeMaker picks up
+from Config.pm. This will result in Proc::ProcessTable being built
+under the correct environment. Everyting should then be OK as long as
+Proc::ProcessTable doesn't try to share off_t's with the rest of perl,
+or if it does they should be explicitly specified as off64_t.
+
+=head2 BSD::Resource
+
+BSD::Resource versions earlier than 1.09 do not compile on Solaris
+with perl 5.6.0 and higher, for the same reasons as Proc::ProcessTable.
+BSD::Resource versions starting from 1.09 have a workaround for the problem.
+
+=head1 AUTHOR
+
+The original was written by Andy Dougherty F<doughera@lafayette.edu>
+drawing heavily on advice from Alan Burlison, Nick Ing-Simmons, Tim Bunce,
+and many other Solaris users over the years.
+
+Please report any errors, updates, or suggestions to F<perlbug@perl.org>.
+
+=head1 LAST MODIFIED
+
+$Id: README.solaris,v 1.3 2000/11/09 19:11:27 doughera Exp $
=head2 perl - Practical Extraction and Report Language
-=over
+=over 4
=item SYNOPSIS
=head2 perlfaq - frequently asked questions about Perl ($Date: 1999/05/23
20:38:02 $)
-=over
+=over 4
=item DESCRIPTION
I do [task] in Perl?, When shouldn't I program in Perl?, What's the
difference between "perl" and "Perl"?, Is it a Perl program or a Perl
script?, What is a JAPH?, Where can I get a list of Larry Wall witticisms?,
-How can I convince my sysadmin/supervisor/employees to use version
-(5/5.005/Perl instead of some other language)?, L<perlfaq2>: Obtaining and
+How can I convince my sysadmin/supervisor/employees to use (version
+5/5.005/Perl) instead of some other language?, L<perlfaq2>: Obtaining and
Learning about Perl, What machines support Perl? Where do I get it?, How
can I get a binary version of Perl?, I don't have a C compiler on my
system. How can I compile perl?, I copied the Perl binary from one machine
I learn about CGI or Web programming in Perl?, Where can I learn about
object-oriented Perl programming?, Where can I learn about linking C with
Perl? [h2xs, xsubpp], I've read perlembed, perlguts, etc., but I can't
-embed perl in my C program, what am I doing wrong?, When I tried to run my
+embed perl in my C program; what am I doing wrong?, When I tried to run my
script, I got this message. What does it mean?, What's MakeMaker?,
L<perlfaq4>: Data Manipulation, Why am I getting long decimals (eg,
19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?,
What's wrong?, How can I pull out lines between two patterns that are
themselves on different lines?, I put a regular expression into $/ but it
didn't work. What's wrong?, How do I substitute case insensitively on the
-LHS, but preserving case on the RHS?, How can I make C<\w> match national
+LHS while preserving case on the RHS?, How can I make C<\w> match national
character sets?, How can I match a locale-smart version of C</[a-zA-Z]/>?,
How can I quote a variable to use in a regex?, What is C</o> really for?,
How do I use a regular expression to strip C style comments from a file?,
shadow password file on a Unix system?, How do I set the time and date?,
How can I sleep() or alarm() for under a second?, How can I measure time
under a second?, How can I do an atexit() or setjmp()/longjmp()? (Exception
-handling), Why doesn't my sockets program work under System V (Solaris)?
+handling), Why doesn't my sockets program work under System V (Solaris)?
What does the error message "Protocol not supported" mean?, How can I call
my system's unique C functions from Perl?, Where do I get the include files
to do ioctl() or syscall()?, Why do setuid perl scripts complain about
module/library directory?, How do I add the directory my program lives in
to the module/library search path?, How do I add a directory to my include
path at runtime?, What is socket.ph and where do I get it?, L<perlfaq9>:
-Networking, My CGI script runs from the command line but not the browser.
+Networking, My CGI script runs from the command line but not the browser.
(500 Server Error), How can I get better error messages from a CGI
program?, How do I remove HTML from a string?, How do I extract URLs?, How
do I download a file from the user's machine? How do I open a file on
active newsgroups?, How do I fetch/put an FTP file?, How can I do RPC in
Perl?
-=over
+=over 4
=item Where to get this document
=item Author and Copyright Information
-=over
+=over 4
=item Bundled Distributions
=item Changes
-23/May/99, 13/April/99, 7/January/99, 22/June/98, 24/April/97, 23/April/97,
-25/March/97, 18/March/97, 17/March/97 Version, Initial Release: 11/March/97
+1/November/2000, 23/May/99, 13/April/99, 7/January/99, 22/June/98,
+24/April/97, 23/April/97, 25/March/97, 18/March/97, 17/March/97 Version,
+Initial Release: 11/March/97
=back
=head2 perltoc - perl documentation table of contents
-=over
+=over 4
=item DESCRIPTION
=item BASIC DOCUMENTATION
-=over
+=over 4
=item perl - Practical Extraction and Report Language
=head2 perlbook - Perl book information
-=over
+=over 4
=item DESCRIPTION
=head2 perlsyn - Perl syntax
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Declarations
=head2 perldata - Perl data types
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Variable names
=head2 perlop - Perl operators and precedence
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Terms and List Operators (Leftward)
=head2 perlsub - Perl subroutines
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Private Variables via my()
=head2 perlfunc - Perl builtin functions
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Perl Functions by Category
=head2 perlreftut - Mark's very short tutorial about references
-=over
+=over 4
=item DESCRIPTION
=item Syntax
-=over
+=over 4
=item Making References
=item Credits
-=over
+=over 4
=item Distribution Conditions
=head2 perldsc - Perl Data Structures Cookbook
-=over
+=over 4
=item DESCRIPTION
=item ARRAYS OF ARRAYS
-=over
+=over 4
=item Declaration of a ARRAY OF ARRAYS
=item HASHES OF ARRAYS
-=over
+=over 4
=item Declaration of a HASH OF ARRAYS
=item ARRAYS OF HASHES
-=over
+=over 4
=item Declaration of a ARRAY OF HASHES
=item HASHES OF HASHES
-=over
+=over 4
=item Declaration of a HASH OF HASHES
=item MORE ELABORATE RECORDS
-=over
+=over 4
=item Declaration of MORE ELABORATE RECORDS
=head2 perlrequick - Perl regular expressions quick start
-=over
+=over 4
=item DESCRIPTION
=item The Guide
-=over
+=over 4
=item Simple word matching
=item AUTHOR AND COPYRIGHT
-=over
+=over 4
=item Acknowledgments
=head2 perlpod - plain old documentation
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Verbatim Paragraph
=head2 perlstyle - Perl style guide
-=over
+=over 4
=item DESCRIPTION
=head2 perltrap - Perl traps for the unwary
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Awk Traps
=head2 perlrun - how to execute the Perl interpreter
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item #! and quoting on non-Unix systems
=head2 perldiag - various Perl diagnostics
-=over
+=over 4
=item DESCRIPTION
=head2 perllexwarn - Perl Lexical Warnings
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Default Warnings and Optional Warnings
=head2 perldebtut - Perl debugging tutorial
-=over
+=over 4
=item DESCRIPTION
=head2 perldebug - Perl debugging
-=over
+=over 4
=item DESCRIPTION
=item The Perl Debugger
-=over
+=over 4
=item Debugger Commands
=head2 perlvar - Perl predefined variables
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Predefined Names
=head2 perllol - Manipulating Arrays of Arrays in Perl
-=over
+=over 4
=item DESCRIPTION
=head2 perlopentut - tutorial on opening things in Perl
-=over
+=over 4
=item DESCRIPTION
=item Open E<agrave> la shell
-=over
+=over 4
=item Simple Opens
=item Open E<agrave> la C
-=over
+=over 4
=item Permissions E<agrave> la mode
=item Obscure Open Tricks
-=over
+=over 4
=item Re-Opening Files (dups)
=item Other I/O Issues
-=over
+=over 4
=item Opening Non-File Files
=head2 perlretut - Perl regular expressions tutorial
-=over
+=over 4
=item DESCRIPTION
=item Part 1: The basics
-=over
+=over 4
=item Simple word matching
=item Part 2: Power tools
-=over
+=over 4
=item More on characters, strings, and character classes
=item AUTHOR AND COPYRIGHT
-=over
+=over 4
=item Acknowledgments
=head2 perlre - Perl regular expressions
-=over
+=over 4
=item DESCRIPTION
i, m, s, x
-=over
+=over 4
=item Regular Expressions
=head2 perlref - Perl references and nested data structures
-=over
+=over 4
=item NOTE
=item DESCRIPTION
-=over
+=over 4
=item Making References
=head2 perlform - Perl formats
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Format Variables
=item NOTES
-=over
+=over 4
=item Footers
=head2 perlboot - Beginner's Object-Oriented Tutorial
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item If we could talk to the animals...
=head2 perltoot - Tom's object-oriented tutorial for perl
-=over
+=over 4
=item DESCRIPTION
=item Creating a Class
-=over
+=over 4
=item Object Representation
=item Class Data
-=over
+=over 4
=item Accessing Class Data
=item Inheritance
-=over
+=over 4
=item Overridden Methods
=item Alternate Object Representations
-=over
+=over 4
=item Arrays as Objects
=item AUTOLOAD: Proxy Methods
-=over
+=over 4
=item Autoloaded Data Methods
=item Metaclassical Tools
-=over
+=over 4
=item Class::Struct
=item Data Members as Variables
+=back
+
=item NOTES
+=over 4
+
=item Object Terminology
=back
=item COPYRIGHT
-=over
+=over 4
=item Acknowledgments
=head2 perltootc - Tom's OO Tutorial for Class Data in Perl
-=over
+=over 4
=item DESCRIPTION
=item Class Data as Package Variables
-=over
+=over 4
=item Putting All Your Eggs in One Basket
=item Class Data as Lexical Variables
-=over
+=over 4
=item Privacy and Responsibility
=head2 perlobj - Perl objects
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item An Object is Simply a Reference
=head2 perlbot - Bag'o Object Tricks (the BOT)
-=over
+=over 4
=item DESCRIPTION
=head2 perltie - how to hide an object class in a simple variable
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Tying Scalars
=head2 perlipc - Perl interprocess communication (signals, fifos, pipes,
safe subprocesses, sockets, and semaphores)
-=over
+=over 4
=item DESCRIPTION
=item Named Pipes
-=over
+=over 4
=item WARNING
=item Using open() for IPC
-=over
+=over 4
=item Filehandles
=item Sockets: Client/Server Communication
-=over
+=over 4
=item Internet Line Terminators
=item TCP Clients with IO::Socket
-=over
+=over 4
=item A Simple Client
=head2 perlfork - Perl's fork() emulation
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Behavior of other Perl features in forked pseudo-processes
=head2 perlnumber - semantics of numbers and numeric operations in Perl
-=over
+=over 4
=item SYNOPSIS
=head2 perlthrtut - tutorial on threads in Perl
-=over
+=over 4
=item DESCRIPTION
=item Threaded Program Models
-=over
+=over 4
=item Boss/Worker
=item Thread Basics
-=over
+=over 4
=item Basic Thread Support
=item Threads And Data
-=over
+=over 4
=item Shared And Unshared Data
=item Threads And Code
-=over
+=over 4
=item Semaphores: Synchronizing Data Access
=item General Thread Utility Routines
-=over
+=over 4
=item What Thread Am I In?
=item Bibliography
-=over
+=over 4
=item Introductory Texts
=head2 perlport - Writing portable Perl
-=over
+=over 4
=item DESCRIPTION
=item ISSUES
-=over
+=over 4
=item Newlines
=item PLATFORMS
-=over
+=over 4
=item Unix
=item FUNCTION IMPLEMENTATIONS
-=over
+=over 4
=item Alphabetical Listing of Perl Functions
=head2 perllocale - Perl locale handling (internationalization and
localization)
-=over
+=over 4
=item DESCRIPTION
=item USING LOCALES
-=over
+=over 4
=item The use locale pragma
=item LOCALE CATEGORIES
-=over
+=over 4
=item Category LC_COLLATE: Collation
=item NOTES
-=over
+=over 4
=item Backward compatibility
=item BUGS
-=over
+=over 4
=item Broken systems
=head2 perlunicode - Unicode support in Perl
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Important Caveat
=head2 perlebcdic - Considerations for running Perl on EBCDIC platforms
-=over
+=over 4
=item DESCRIPTION
=item COMMON CHARACTER CODE SETS
-=over
+=over 4
=item ASCII
=item CONVERSIONS
-=over
+=over 4
=item tr///
=item SORTING
-=over
+=over 4
=item Ignore ASCII vs. EBCDIC sort differences.
=item TRANFORMATION FORMATS
-=over
+=over 4
=item URL decoding and encoding
=item OS ISSUES
-=over
+=over 4
=item OS/400
=head2 perlsec - Perl security
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Laundering and Detecting Tainted Data
=head2 perlmod - Perl modules (packages and symbol tables)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Packages
=head2 perlmodlib - constructing new Perl modules and finding existing ones
-=over
+=over 4
=item DESCRIPTION
=item THE PERL MODULE LIBRARY
-=over
+=over 4
=item Pragmatic Modules
attributes, attrs, autouse, base, blib, bytes, charnames, constant,
-diagnostics, fields, filetest, integer, less, lib, locale, open, ops,
-overload, re, sigtrap, strict, subs, utf8, vars, warnings
+diagnostics, fields, filetest, integer, less, locale, open, ops, overload,
+re, sigtrap, strict, subs, utf8, vars, warnings, warnings::register
=item Standard Modules
AnyDBM_File, AutoLoader, AutoSplit, B, B::Asmdata, B::Assembler, B::Bblock,
B::Bytecode, B::C, B::CC, B::Debug, B::Deparse, B::Disassembler, B::Lint,
-B::Showlex, B::Stackobj, B::Terse, B::Xref, Benchmark, ByteLoader, CGI,
-CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast, CGI::Pretty, CGI::Push,
-CGI::Switch, CPAN, CPAN::FirstTime, CPAN::Nox, Carp, Carp::Heavy,
-Class::Struct, Cwd, DB, DB_File, Devel::SelfStubber, DirHandle, Dumpvalue,
-English, Env, Exporter, Exporter::Heavy, ExtUtils::Command,
-ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed, ExtUtils::Liblist,
-ExtUtils::MM_Cygwin, ExtUtils::MM_OS2, ExtUtils::MM_Unix, ExtUtils::MM_VMS,
-ExtUtils::MM_Win32, ExtUtils::MakeMaker, ExtUtils::Manifest,
-ExtUtils::Mkbootstrap, ExtUtils::Mksymlists, ExtUtils::Packlist,
-ExtUtils::testlib, Fatal, Fcntl, File::Basename, File::CheckTree,
-File::Compare, File::Copy, File::DosGlob, File::Find, File::Path,
-File::Spec, File::Spec::Functions, File::Spec::Mac, File::Spec::OS2,
-File::Spec::Unix, File::Spec::VMS, File::Spec::Win32, File::Temp,
-File::stat, FileCache, FileHandle, FindBin, Getopt::Long, Getopt::Std,
-I18N::Collate, IO, IPC::Open2, IPC::Open3, Math::BigFloat, Math::BigInt,
-Math::Complex, Math::Trig, NDBM_File, Net::Ping, Net::hostent, Net::netent,
-Net::protoent, Net::servent, O, ODBM_File, Opcode, Pod::Checker, Pod::Find,
-Pod::Html, Pod::InputObjects, Pod::Man, Pod::ParseUtils, Pod::Parser,
-Pod::Plainer, Pod::Select, Pod::Text, Pod::Text::Color, Pod::Text::Termcap,
-Pod::Usage, SDBM_File, Safe, Search::Dict, SelectSaver, SelfLoader, Shell,
-Socket, Symbol, Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine,
-Test, Test::Harness, Text::Abbrev, Text::ParseWords, Text::Soundex,
-Text::Wrap, Tie::Array, Tie::Handle, Tie::Hash, Tie::RefHash, Tie::Scalar,
+B::Showlex, B::Stackobj, B::Stash, B::Terse, B::Xref, Benchmark,
+ByteLoader, CGI, CGI::Apache, CGI::Carp, CGI::Cookie, CGI::Fast,
+CGI::Pretty, CGI::Push, CGI::Switch, CPAN, CPAN::FirstTime, CPAN::Nox,
+Carp, Carp::Heavy, Class::Struct, Cwd, DB, DB_File, Devel::SelfStubber,
+DirHandle, Dumpvalue, Encode, English, Env, Exporter, Exporter::Heavy,
+ExtUtils::Command, ExtUtils::Embed, ExtUtils::Install, ExtUtils::Installed,
+ExtUtils::Liblist, ExtUtils::MM_Cygwin, ExtUtils::MM_OS2,
+ExtUtils::MM_Unix, ExtUtils::MM_VMS, ExtUtils::MM_Win32,
+ExtUtils::MakeMaker, ExtUtils::Manifest, ExtUtils::Mkbootstrap,
+ExtUtils::Mksymlists, ExtUtils::Packlist, ExtUtils::testlib, Fatal, Fcntl,
+File::Basename, File::CheckTree, File::Compare, File::Copy, File::DosGlob,
+File::Find, File::Path, File::Spec, File::Spec::Functions, File::Spec::Mac,
+File::Spec::OS2, File::Spec::Unix, File::Spec::VMS, File::Spec::Win32,
+File::Temp, File::stat, FileCache, FileHandle, FindBin, Getopt::Long,
+Getopt::Std, I18N::Collate, IO, IPC::Open2, IPC::Open3, Math::BigFloat,
+Math::BigInt, Math::Complex, Math::Trig, NDBM_File, Net::Ping,
+Net::hostent, Net::netent, Net::protoent, Net::servent, O, ODBM_File,
+Opcode, Pod::Checker, Pod::Find, Pod::Html, Pod::InputObjects, Pod::LaTeX,
+Pod::Man, Pod::ParseUtils, Pod::Parser, Pod::Plainer, Pod::Select,
+Pod::Text, Pod::Text::Color, Pod::Text::Termcap, Pod::Usage, SDBM_File,
+Safe, Search::Dict, SelectSaver, SelfLoader, Shell, Socket, Storable,
+Symbol, Term::ANSIColor, Term::Cap, Term::Complete, Term::ReadLine, Test,
+Test::Harness, Text::Abbrev, Text::ParseWords, Text::Soundex, Text::Wrap,
+Tie::Array, Tie::Handle, Tie::Hash, Tie::RefHash, Tie::Scalar,
Tie::SubstrHash, Time::Local, Time::gmtime, Time::localtime, Time::tm,
UNIVERSAL, User::grent, User::pwent
=item Modules: Creation, Use, and Abuse
-=over
+=over 4
=item Guidelines for Module Creation
=head2 perlmodinstall - Installing CPAN Modules
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item PREAMBLE
=head2 perlnewmod - preparing a new module for distribution
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Warning
=head2 perlfaq1 - General Questions About Perl ($Revision: 1.23 $, $Date:
1999/05/23 16:08:30 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item What is Perl?
=item Where can I get a list of Larry Wall witticisms?
-=item How can I convince my sysadmin/supervisor/employees to use version
-(5/5.005/Perl instead of some other language)?
+=item How can I convince my sysadmin/supervisor/employees to use (version
+5/5.005/Perl) instead of some other language?
=back
=head2 perlfaq2 - Obtaining and Learning about Perl ($Revision: 1.32 $,
$Date: 1999/10/14 18:46:09 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item What machines support Perl? Where do I get it?
=head2 perlfaq3 - Programming Tools ($Revision: 1.38 $, $Date: 1999/05/23
16:08:30 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item How do I do (anything)?
=item Where can I learn about linking C with Perl? [h2xs, xsubpp]
=item I've read perlembed, perlguts, etc., but I can't embed perl in
-my C program, what am I doing wrong?
+my C program; what am I doing wrong?
=item When I tried to run my script, I got this message. What does it
mean?
=head2 perlfaq4 - Data Manipulation ($Revision: 1.49 $, $Date: 1999/05/23
20:37:49 $)
-=over
+=over 4
=item DESCRIPTION
=item Data: Numbers
-=over
+=over 4
=item Why am I getting long decimals (eg, 19.9499999999999) instead of the
numbers I should be getting (eg, 19.95)?
=item Data: Dates
-=over
+=over 4
=item How do I find the week-of-the-year/day-of-the-year?
=item Data: Strings
-=over
+=over 4
=item How do I validate input?
=item Data: Arrays
-=over
+=over 4
=item What is the difference between a list and an array?
=item Data: Hashes (Associative Arrays)
-=over
+=over 4
=item How do I process an entire hash?
=item Data: Misc
-=over
+=over 4
=item How do I handle binary data correctly?
=head2 perlfaq5 - Files and Formats ($Revision: 1.38 $, $Date: 1999/05/23
16:08:30 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item How do I flush/unbuffer an output filehandle? Why must I do this?
=head2 perlfaq6 - Regexes ($Revision: 1.27 $, $Date: 1999/05/23 16:08:30 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item How can I hope to use regular expressions without creating illegible
and unmaintainable code?
=item I put a regular expression into $/ but it didn't work. What's wrong?
-=item How do I substitute case insensitively on the LHS, but preserving
+=item How do I substitute case insensitively on the LHS while preserving
case on the RHS?
=item How can I make C<\w> match national character sets?
=head2 perlfaq7 - Perl Language Issues ($Revision: 1.28 $, $Date:
1999/05/23 20:36:18 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Can I get a BNF/yacc/RE for the Perl language?
=head2 perlfaq8 - System Interaction ($Revision: 1.39 $, $Date: 1999/05/23
18:37:57 $)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item How do I find out which operating system I'm running under?
=item How can I do an atexit() or setjmp()/longjmp()? (Exception handling)
-=item Why doesn't my sockets program work under System V (Solaris)? What
+=item Why doesn't my sockets program work under System V (Solaris)? What
does the error message "Protocol not supported" mean?
=item How can I call my system's unique C functions from Perl?
=head2 perlfaq9 - Networking ($Revision: 1.26 $, $Date: 1999/05/23 16:08:30
$)
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
-=item My CGI script runs from the command line but not the browser. (500
+=item My CGI script runs from the command line but not the browser. (500
Server Error)
=item How can I get better error messages from a CGI program?
=head2 perlcompile - Introduction to the Perl Compiler-Translator
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Layout
=item Using The Back Ends
-=over
+=over 4
=item The Cross Referencing Back End
=head2 perlembed - how to embed perl in your C program
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item PREAMBLE
=item ROADMAP
+Compiling your C program, Adding a Perl interpreter to your C program,
+Calling a Perl subroutine from your C program, Evaluating a Perl statement
+from your C program, Performing Perl pattern matches and substitutions from
+your C program, Fiddling with the Perl stack from your C program,
+Maintaining a persistent interpreter, Maintaining multiple interpreter
+instances, Using Perl modules, which themselves use C libraries, from your
+C program, Embedding Perl under Win32
+
=item Compiling your C program
=item Adding a Perl interpreter to your C program
=back
-=item Embedding Perl under Windows
+=item Embedding Perl under Win32
=item MORAL
=head2 perldebguts - Guts of Perl debugging
-=over
+=over 4
=item DESCRIPTION
=item Debugger Internals
-=over
+=over 4
=item Writing Your Own Debugger
=item Debugging regular expressions
-=over
+=over 4
=item Compile-time output
=item Debugging Perl memory usage
-=over
+=over 4
=item Using C<$ENV{PERL_DEBUG_MSTATS}>
=head2 perlxstut, perlXStut - Tutorial for writing XSUBs
-=over
+=over 4
=item DESCRIPTION
=item SPECIAL NOTES
-=over
+=over 4
=item make
=item TUTORIAL
-=over
+=over 4
=item EXAMPLE 1
=item Author
-=over
+=over 4
=item Last Changed
=head2 perlxs - XS language reference manual
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Introduction
=head2 perlguts - Introduction to the Perl API
-=over
+=over 4
=item DESCRIPTION
=item Variables
-=over
+=over 4
=item Datatypes
=item Subroutines
-=over
+=over 4
=item XSUBs and the Argument Stack
=item Compiled code
-=over
+=over 4
=item Code tree
=item How multiple interpreters and concurrency are supported
-=over
+=over 4
=item Background and PERL_IMPLICIT_CONTEXT
A, p, d, s, n, r, f, m, o, j, x
-=over
+=over 4
=item Formatted Printing of IVs, UVs, and NVs
=item Unicode Support
-=over
+=over 4
=item What B<is> Unicode, anyway?
=head2 perlcall - Perl calling conventions from C
-=over
+=over 4
=item DESCRIPTION
=item FLAG VALUES
-=over
+=over 4
=item G_VOID
=item EXAMPLES
-=over
+=over 4
=item No Parameters, Nothing returned
=head2 perlutil - utilities packaged with the Perl distribution
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item DOCUMENTATION
=head2 perlfilter - Source Filters
-=over
+=over 4
=item DESCRIPTION
=head2 perldbmfilter - Perl DBM Filters
-=over
+=over 4
=item SYNOPSIS
B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
B<filter_fetch_value>
-=over
+=over 4
=item The Filter
=head2 perlapi - autogenerated documentation for the perl public API
-=over
+=over 4
=item DESCRIPTION
SvPOK_off, SvPOK_on, SvPOK_only, SvPOK_only_UTF8, SvPV, SvPVX, SvPV_force,
SvPV_nolen, SvREFCNT, SvREFCNT_dec, SvREFCNT_inc, SvROK, SvROK_off,
SvROK_on, SvRV, SvSETMAGIC, SvSetSV, SvSetSV_nosteal, SvSTASH, SvTAINT,
-SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, svtype, SvTYPE, SVt_IV,
+SvTAINTED, SvTAINTED_off, SvTAINTED_on, SvTRUE, SvTYPE, svtype, SVt_IV,
SVt_NV, SVt_PV, SVt_PVAV, SVt_PVCV, SVt_PVHV, SVt_PVMG, SvUPGRADE, SvUTF8,
SvUTF8_off, SvUTF8_on, SvUV, SvUVX, sv_2mortal, sv_bless, sv_catpv,
sv_catpvf, sv_catpvf_mg, sv_catpvn, sv_catpvn_mg, sv_catpv_mg, sv_catsv,
sv_unmagic, sv_unref, sv_upgrade, sv_usepvn, sv_usepvn_mg,
sv_utf8_downgrade, sv_utf8_encode, sv_utf8_upgrade, sv_vcatpvfn,
sv_vsetpvfn, THIS, toLOWER, toUPPER, U8 *s, utf8_to_bytes, utf8_to_uv,
-utf8_to_uv_chk, warn, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XS, XSRETURN,
-XSRETURN_EMPTY, XSRETURN_IV, XSRETURN_NO, XSRETURN_NV, XSRETURN_PV,
-XSRETURN_UNDEF, XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV, XST_mPV,
-XST_mUNDEF, XST_mYES, XS_VERSION, XS_VERSION_BOOTCHECK, Zero
+utf8_to_uv_simple, warn, XPUSHi, XPUSHn, XPUSHp, XPUSHs, XPUSHu, XS,
+XSRETURN, XSRETURN_EMPTY, XSRETURN_IV, XSRETURN_NO, XSRETURN_NV,
+XSRETURN_PV, XSRETURN_UNDEF, XSRETURN_YES, XST_mIV, XST_mNO, XST_mNV,
+XST_mPV, XST_mUNDEF, XST_mYES, XS_VERSION, XS_VERSION_BOOTCHECK, Zero
=item AUTHORS
=head2 perlintern - autogenerated documentation of purely B<internal>
Perl functions
-=over
+=over 4
=item DESCRIPTION
=head2 perlapio - perl's IO abstraction interface.
-=over
+=over 4
=item SYNOPSIS
B<PerlIO_seek(f,o,w)>, B<PerlIO_getpos(f,p)>, B<PerlIO_setpos(f,p)>,
B<PerlIO_rewind(f)>, B<PerlIO_tmpfile()>
-=over
+=over 4
=item Co-existence with stdio
=head2 perltodo - Perl TO-DO List
-=over
+=over 4
=item DESCRIPTION
=item Infrastructure
-=over
+=over 4
=item Mailing list archives
=item Configure
-=over
+=over 4
=item Install HTML
=item Perl Language
-=over
-
-=item our ($var)
+=over 4
=item 64-bit Perl
=item Perl Internals
-=over
+=over 4
=item magic_setisa
=item Documentation
-=over
+=over 4
=item A clear division into tutorial and reference
=item Modules
-=over
+=over 4
=item Update the POSIX extension to conform with the POSIX 1003.1 Edition 2
=item Update semibroken auxiliary tools; h2ph, a2p, etc.
-=item POD Converters
-
=item pod2html
=item Podchecker
=item Tom's Wishes
-=over
+=over 4
=item Webperl
=item Win32 Stuff
-=over
+=over 4
=item Rename new headers to be consistent with the rest
=item Possible pragmas
-=over
+=over 4
=item 'less'
=item Optimizations
-=over
+=over 4
=item constant function cache
=item To Do Or Not To Do
-=over
+=over 4
=item Making my() work on "package" variables
=item Threading
-=over
+=over 4
=item Modules
=item Compiler
-=over
+=over 4
=item Optimization
=item Recently Finished Tasks
-=over
+=over 4
=item Figure a way out of $^(capital letter)
=head2 perlhack - How to hack at the Perl internals
-=over
+=over 4
=item DESCRIPTION
it preclude other desirable features?, Is the implementation robust?, Is
the implementation generic enough to be portable?, Is there enough
documentation?, Is there another way to do it?, Does it create too much
-work?, Patches speak louder than words, L<perlguts>, L<perlxstut> and
-L<perlxs>, L<perlapi>, F<Porting/pumpkin.pod>, The perl5-porters FAQ
+work?, Patches speak louder than words
+
+=over 4
+
+=item Keeping in sync
+
+rsync'ing the source tree, Using rsync over the LAN, Using pushing over the
+NFS, rsync'ing the patches
-=over
+=item Why rsync the source tree
+
+It's easier, It's more recent, It's more reliable
+
+=item Why rsync the patches
+
+It's easier, It's a good reference, Finding a start point, Finding how to
+fix a bug, Finding the source of misbehaviour
+
+=item Submitting patches
+
+L<perlguts>, L<perlxstut> and L<perlxs>, L<perlapi>,
+F<Porting/pumpkin.pod>, The perl5-porters FAQ
=item Finding Your Way Around
=item Using a source-level debugger
run [args], break function_name, break source.c:xxx, step, next, continue,
-finish, print
+finish, 'enter', print
=item Dumping Perl Data Structures
=item EXTERNAL TOOLS FOR DEBUGGING PERL
-=over
+=over 4
=item Rational Software's Purify
=head2 perlhist - the Perl history records
-=over
+=over 4
=item DESCRIPTION
=item THE KEEPERS OF THE PUMPKIN
-=over
+=over 4
=item PUMPKIN?
=item THE RECORDS
-=over
+=over 4
=item SELECTED RELEASE SIZES
=head2 perldelta - what's new for perl v5.7.0
-=over
+=over 4
=item DESCRIPTION
=item Modules and Pragmata
-=over
+=over 4
=item New Modules
=item Installation and Configuration Improvements
-=over
+=over 4
=item Generic Improvements
sort() arguments are now compiled in the right wantarray context (they were
accidentally using the context of the sort() itself)
-=over
+=over 4
=item Platform Specific Changes and Fixes
=item Known Problems
-=over
+=over 4
=item Unicode Support Still Far From Perfect
=head2 perl56delta, perldelta - what's new for perl v5.6.0
-=over
+=over 4
=item DESCRIPTION
=item Core Enhancements
-=over
+=over 4
=item Interpreter cloning, threads, and concurrency
=item Modules and Pragmata
-=over
+=over 4
=item Modules
=item Utility Changes
-=over
+=over 4
=item dprofpp
=item Performance enhancements
-=over
+=over 4
=item Simple sort() using { $a <=> $b } and the like are optimized
=item Installation and Configuration Improvements
-=over
+=over 4
=item -Dusethreads means something different
=item Platform specific changes
-=over
+=over 4
=item Supported platforms
=item Significant bug fixes
-=over
+=over 4
=item <HANDLE> on empty files
=item Incompatible Changes
-=over
+=over 4
=item Perl Source Incompatibilities
=item Known Problems
-=over
+=over 4
=item Thread test failures
=head2 perl5005delta, perldelta - what's new for perl5.005
-=over
+=over 4
=item DESCRIPTION
=item Incompatible Changes
-=over
+=over 4
=item WARNING: This version is not binary compatible with Perl 5.004.
=item Core Changes
-=over
+=over 4
=item Threads
=item Supported Platforms
-=over
+=over 4
=item New Platforms
=item Modules and Pragmata
-=over
+=over 4
=item New Modules
=head2 perl5004delta, perldelta - what's new for perl5.004
-=over
+=over 4
=item DESCRIPTION
=item Core Changes
-=over
+=over 4
=item List assignment to %ENV works
-=item "Can't locate Foo.pm in @INC" error now lists @INC
+=item Change to "Can't locate Foo.pm in @INC" error
=item Compilation option: Binary compatibility with 5.003
=item Support for More Operating Systems
-=over
+=over 4
=item Win32
=item Modules
-=over
+=over 4
=item Required Updates
=item Utility Changes
-=over
+=over 4
=item pod2html
=head2 perlaix, README.aix - Perl version 5 on IBM Unix (AIX) systems
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Compiling Perl 5 on AIX
=head2 perlamiga - Perl under Amiga OS (possibly very outdated information)
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Prerequisites
=item Accessing documentation
-=over
+=over 4
=item Manpages
=item BUILD
-=over
+=over 4
=item Prerequisites
=head2 perlcygwin, README.cygwin - Perl for Cygwin
-=over
+=over 4
=item SYNOPSIS
=item PREREQUISITES
-=over
+=over 4
=item Cygwin = GNU+Cygnus+Windows (Don't leave UNIX without it)
=item CONFIGURE
-=over
+=over 4
=item Strip Binaries
=item MAKE
-=over
+=over 4
=item Warnings
=item TEST
-=over
+=over 4
=item File Permissions
=back
-=head2 perldos - Perl under DOS, W31, W95.
-
-=over
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=over
-
-=item Prerequisites
-
-DJGPP, Pthreads
-
-=item Shortcomings of Perl under DOS
-
-=item Building
-
-=item Testing
-
-=item Installation
-
-=back
-
-=item AUTHOR
-
-=item SEE ALSO
-
-=back
-
=head2 perlepoc, README.epoc - Perl for EPOC
-=over
+=over 4
=item SYNOPSIS
=item USING PERL ON EPOC
-=over
+=over 4
=item IO Redirection
=head2 perlhpux, README.hpux - Perl version 5 on Hewlett-Packard Unix
(HP-UX) systems
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Compiling Perl 5 on HP-UX
=head2 perlmachten, README.machten - Perl version 5 on Power MachTen
systems
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Compiling Perl 5 on MachTen
=head2 perlos2 - Perl under OS/2, DOS, Win0.3*, Win0.95 and WinNT.
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
+
+=item DESCRIPTION
+
+=over 4
=item Target
=back
-=over
-
=item Frequently asked questions
-=over
+=over 4
=item I cannot run external programs
=item INSTALLATION
-=over
+=over 4
=item Automatic binary installation
=item Accessing documentation
-=over
+=over 4
=item OS/2 F<.INF> file
=item BUILD
-=over
+=over 4
=item Prerequisites
=item Build FAQ
-=over
+=over 4
=item Some C</> became C<\> in pdksh.
=item Specific (mis)features of OS/2 port
-=over
+=over 4
=item C<setpriority>, C<getpriority>
=item Perl flavors
-=over
+=over 4
=item F<perl.exe>
=item ENVIRONMENT
-=over
+=over 4
=item C<PERLLIB_PREFIX>
=item Evolution
-=over
+=over 4
=item Priorities
=back
-=over
+=over 4
=item AUTHOR
=head2 perlos390, README.os390 - building and installing Perl for OS/390.
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Unpacking
=item SEE ALSO
-=over
+=over 4
=item Mailing list
=head2 perlposix-bc, README.posix-bc - building and installing Perl for
BS2000 POSIX.
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item gzip
=item SEE ALSO
-=over
+=over 4
=item Mailing list
=back
+=head2 perlsolaris, README.solaris - Perl version 5 on Solaris systems
+
+=over 4
+
+=item DESCRIPTION
+
+=over 4
+
+=item Solaris Version Numbers.
+
+=back
+
+=item RESOURCES
+
+Solaris FAQ, Precompiled Binaries, Solaris Documentation
+
+=item SETTING UP
+
+=over 4
+
+=item File Extraction Problems.
+
+=item Compiler and Related Tools.
+
+=item Environment
+
+=back
+
+=item RUN CONFIGURE.
+
+=over 4
+
+=item 64-bit Issues.
+
+=item Threads.
+
+=item Malloc Issues.
+
+=back
+
+=item MAKE PROBLEMS.
+
+Dynamic Loading Problems With GNU as and GNU ld, ld.so.1: ./perl: fatal:
+relocation error:, dlopen: stub interception failed, #error "No
+DATAMODEL_NATIVE specified", sh: ar: not found
+
+=item MAKE TEST
+
+=over 4
+
+=item op/stat.t test 4
+
+=back
+
+=item PREBUILT BINARIES.
+
+=item RUNTIME ISSUES.
+
+=over 4
+
+=item Limits on Numbers of Open Files.
+
+=back
+
+=item SOLARIS-SPECIFIC MODULES.
+
+=item SOLARIS-SPECIFIC PROBLEMS WITH MODULES.
+
+=over 4
+
+=item Proc::ProcessTable
+
+=item BSD::Resource
+
+=back
+
+=item AUTHOR
+
+=item LAST MODIFIED
+
+=back
+
=head2 perlvms - VMS-specific documentation for Perl
-=over
+=over 4
=item DESCRIPTION
=item Organization of Perl Images
-=over
+=over 4
=item Core Images
=item File specifications
-=over
+=over 4
=item Syntax
=item Command line
-=over
+=over 4
=item I/O redirection and backgrounding
=item Standard modules with VMS-specific differences
-=over
+=over 4
=item SDBM_File
=head2 perlvos, README.vos - Perl for Stratus VOS
-=over
+=over 4
=item SYNOPSIS
-=over
+=over 4
=item Stratus POSIX Support
=item INSTALLING PERL IN VOS
-=over
+=over 4
=item Compiling Perl 5 on VOS
=item USING PERL IN VOS
-=over
+=over 4
=item Unimplemented Features
=back
-=head2 perlwin32 - Perl under Win32
-
-=over
-
-=item SYNOPSIS
-
-=item DESCRIPTION
-
-=over
-
-=item Setting Up
-
-Make, Command Shell, Borland C++, Microsoft Visual C++, Mingw32 with GCC
-
-=item Building
-
-=item Testing
-
-=item Installation
-
-=item Usage Hints
-
-Environment Variables, File Globbing, Using perl from the command line,
-Building Extensions, Command-line Wildcard Expansion, Win32 Specific
-Extensions, Running Perl Scripts, Miscellaneous Things
-
-=back
-
-=item BUGS AND CAVEATS
-
-=item AUTHORS
-
-=item SEE ALSO
-
-=item HISTORY
-
-=back
-
=head1 PRAGMA DOCUMENTATION
=head2 attrs - set/get attributes of a subroutine (deprecated)
-=over
+=over 4
=item SYNOPSIS
=head2 re - Perl pragma to alter regular expression behaviour
-=over
+=over 4
=item SYNOPSIS
=head2 attributes - get/set subroutine or variable attributes
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Built-in Attributes
=item EXPORTS
-=over
+=over 4
=item Default exports
=head2 attrs - set/get attributes of a subroutine (deprecated)
-=over
+=over 4
=item SYNOPSIS
=head2 autouse - postpone load of modules until a function is used
-=over
+=over 4
=item SYNOPSIS
=head2 base - Establish IS-A relationship with base class at compile time
-=over
+=over 4
=item SYNOPSIS
=head2 blib - Use MakeMaker's uninstalled version of a package
-=over
+=over 4
=item SYNOPSIS
=head2 bytes - Perl pragma to force byte semantics rather than character
semantics
-=over
+=over 4
=item SYNOPSIS
=head2 charnames - define character names for C<\N{named}> string literal
escape.
-=over
+=over 4
=item SYNOPSIS
=head2 constant - Perl pragma to declare constants
-=over
+=over 4
=item SYNOPSIS
=head2 diagnostics - Perl compiler pragma to force verbose warning
diagnostics
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item The C<diagnostics> Pragma
=head2 fields - compile-time class fields
-=over
+=over 4
=item SYNOPSIS
=head2 filetest - Perl pragma to control the filetest permission operators
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item subpragma access
=head2 integer - Perl pragma to compute arithmetic in integer instead of
double
-=over
+=over 4
=item SYNOPSIS
=head2 less - perl pragma to request less of something from the compiler
-=over
+=over 4
=item SYNOPSIS
=head2 lib - manipulate @INC at compile time
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Adding directories to @INC
=head2 locale - Perl pragma to use and avoid POSIX locales for built-in
operations
-=over
+=over 4
=item SYNOPSIS
=head2 open - perl pragma to set default disciplines for input and output
-=over
+=over 4
=item SYNOPSIS
=head2 ops - Perl pragma to restrict unsafe operations when compiling
-=over
+=over 4
=item SYNOPSIS
=head2 overload - Package for overloading perl operations
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Declaration of overloaded functions
=item SPECIAL SYMBOLS FOR C<use overload>
-=over
+=over 4
=item Last Resort
=item Cookbook
-=over
+=over 4
=item Two-face scalars
=back
+=head2 perlio - perl pragma to configure C level IO
+
+=over 4
+
+=item SYNOPSIS
+
+=item DESCRIPTION
+
+unix, stdio, perlio
+
+=over 4
+
+=item Defaults and how to override them
+
+=back
+
+=item AUTHOR
+
+=back
+
=head2 re - Perl pragma to alter regular expression behaviour
-=over
+=over 4
=item SYNOPSIS
=head2 sigtrap - Perl pragma to enable simple signal handling
-=over
+=over 4
=item SYNOPSIS
=item OPTIONS
-=over
+=over 4
=item SIGNAL HANDLERS
=head2 strict - Perl pragma to restrict unsafe constructs
-=over
+=over 4
=item SYNOPSIS
=head2 subs - Perl pragma to predeclare sub names
-=over
+=over 4
=item SYNOPSIS
=head2 utf8 - Perl pragma to enable/disable UTF-8 in source code
-=over
+=over 4
=item SYNOPSIS
=head2 vars - Perl pragma to predeclare global variable names (obsolete)
-=over
+=over 4
=item SYNOPSIS
=head2 warnings - Perl pragma to control optional warnings
-=over
+=over 4
=item SYNOPSIS
=head2 AnyDBM_File - provide framework for multiple DBMs
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item DBM Comparisons
=head2 AutoLoader - load subroutines only on demand
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Subroutine Stubs
=head2 AutoSplit - split a package for autoloading
-=over
+=over 4
=item SYNOPSIS
$keep, $check, $modtime
-=over
+=over 4
=item Multiple packages
=head2 B - The Perl Compiler
-=over
+=over 4
=item SYNOPSIS
=item OVERVIEW OF CLASSES
-=over
+=over 4
=item SV-RELATED CLASSES
=head2 B::Asmdata - Autogenerated data about Perl ops, used to generate
bytecode
-=over
+=over 4
=item SYNOPSIS
=head2 B::Assembler - Assemble Perl bytecode
-=over
+=over 4
=item SYNOPSIS
=head2 B::Bblock - Walk basic blocks
-=over
+=over 4
=item SYNOPSIS
=head2 B::Bytecode - Perl compiler's bytecode backend
-=over
+=over 4
=item SYNOPSIS
=head2 B::C - Perl compiler's C backend
-=over
+=over 4
=item SYNOPSIS
=head2 B::CC - Perl compiler's optimized C translation backend
-=over
+=over 4
=item SYNOPSIS
=item DIFFERENCES
-=over
+=over 4
=item Loops
=head2 B::Debug - Walk Perl syntax tree, printing debug info about ops
-=over
+=over 4
=item SYNOPSIS
=head2 B::Deparse - Perl compiler backend to produce perl code
-=over
+=over 4
=item SYNOPSIS
=item USING B::Deparse AS A MODULE
-=over
+=over 4
=item Synopsis
=head2 B::Disassembler - Disassemble Perl bytecode
-=over
+=over 4
=item SYNOPSIS
=head2 B::Lint - Perl lint
-=over
+=over 4
=item SYNOPSIS
=head2 B::O, O - Generic interface to Perl Compiler backends
-=over
+=over 4
=item SYNOPSIS
=head2 B::Showlex - Show lexical variables used in functions or files
-=over
+=over 4
=item SYNOPSIS
=head2 B::Stackobj - Helper module for CC backend
-=over
+=over 4
=item SYNOPSIS
=head2 B::Terse - Walk Perl syntax tree, printing terse info about ops
-=over
+=over 4
=item SYNOPSIS
=head2 B::Xref - Generates cross reference reports for Perl programs
-=over
+=over 4
=item SYNOPSIS
=head2 Bblock, B::Bblock - Walk basic blocks
-=over
+=over 4
=item SYNOPSIS
=head2 Benchmark - benchmark running times of Perl code
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Methods
=head2 ByteLoader - load byte compiled perl code
-=over
+=over 4
=item SYNOPSIS
=head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend
-=over
+=over 4
=item SYNOPSIS
=head2 CGI - Simple Common Gateway Interface Class
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item PROGRAMMING STYLE
=item GENERATING DYNAMIC DOCUMENTS
-=over
+=over 4
=item CREATING A STANDARD HTTP HEADER:
=item CREATING STANDARD HTML ELEMENTS:
-=over
+=over 4
=item PROVIDING ARGUMENTS TO HTML SHORTCUTS
=item CREATING FILL-OUT FORMS:
-=over
+=over 4
=item CREATING AN ISINDEX TAG
=item DEBUGGING
-=over
+=over 4
=item DUMPING OUT ALL THE NAME/VALUE PAIRS
=head2 CGI::Apache - Backward compatibility module for CGI.pm
-=over
+=over 4
=item SYNOPSIS
=head2 CGI::Carp, B<CGI::Carp> - CGI routines for writing to the HTTPD (or
other) error log
-=over
+=over 4
=item SYNOPSIS
=item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW
-=over
+=over 4
=item Changing the default message
=head2 CGI::Cookie - Interface to Netscape Cookies
-=over
+=over 4
=item SYNOPSIS
B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag>
-=over
+=over 4
=item Creating New Cookies
=head2 CGI::Fast - CGI Interface for Fast CGI
-=over
+=over 4
=item SYNOPSIS
=head2 CGI::Pretty - module to produce nicely formatted HTML code
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Tags that won't be formatted
=head2 CGI::Push - Simple Interface to Server Push
-=over
+=over 4
=item SYNOPSIS
-next_page, -last_page, -type, -delay, -cookie, -target, -expires
-=over
+=over 4
=item Heterogeneous Pages
=head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch
-=over
+=over 4
=item SYNOPSIS
=head2 CPAN - query, download and build perl modules from CPAN sites
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Interactive Mode
optionE<gt> [shift|pop]>, C<o conf E<lt>list optionE<gt>
[unshift|push|splice] E<lt>listE<gt>>
-=over
+=over 4
=item Note on urllist parameter's format
=item WORKING WITH CPAN.pm BEHIND FIREWALLS
-=over
+=over 4
=item Three basic types of firewalls
1) I installed a new version of module X but CPAN keeps saying, I
have the old version installed, 2) So why is UNINST=1 not the default?, 3)
-When I install bundles or multiple modules with one command there is
-too much output to keep track of, 4) I am not root, how can I install a
-module in a personal directory?, 5) How to get a package, unwrap it,
-and make a change before building it?, 6) I installed a Bundle and
-had a couple of fails. When I retried, everything resolved nicely.
-Can this be fixed to work on first try?, 7) In our intranet we have
-many modules for internal use. How can I integrate these modules with
-CPAN.pm but without uploading the modules to CPAN?
+I want to clean up my mess, and install a new perl along with all
+modules I have. How do I go about it?, 4) When I install bundles or
+multiple modules with one command there is too much output to keep
+track of, 5) I am not root, how can I install a module in a personal
+directory?, 6) How to get a package, unwrap it, and make a change before
+ building it?, 7) I installed a Bundle and had a couple of fails. When I
+ retried, everything resolved nicely. Can this be fixed to work
+on first try?, 8) In our intranet we have many modules for internal use.
+How can I integrate these modules with CPAN.pm but without uploading
+ the modules to CPAN?, 9) When I run CPAN's shell, I get error msg
+about line 1 to 4, setting meta input/output via the /etc/inputrc
+file
=item BUGS
=head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization
-=over
+=over 4
=item SYNOPSIS
=head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS
module
-=over
+=over 4
=item SYNOPSIS
=head2 Carp, carp - warn of errors (from perspective of caller)
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Forcing a Stack Trace
=head2 Carp::Heavy - Carp guts
-=over
+=over 4
=item SYNOPIS
=head2 Class::Struct - declare struct-like datatypes as Perl classes
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item The C<struct()> function
+=item Class Creation at Compile Time
+
=item Element Types and Accessor Methods
Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or
=head2 Config - access Perl configuration information
-=over
+=over 4
=item SYNOPSIS
=item GLOSSARY
-=over
+=over 4
=item _
C<d_dlsymun>, C<d_dosuid>, C<d_drand48proto>, C<d_dup2>, C<d_eaccess>,
C<d_endgrent>, C<d_endhent>, C<d_endnent>, C<d_endpent>, C<d_endpwent>,
C<d_endsent>, C<d_eofnblk>, C<d_eunice>, C<d_fchmod>, C<d_fchown>,
-C<d_fcntl>, C<d_fd_macros>, C<d_fd_set>, C<d_fds_bits>, C<d_fgetpos>,
-C<d_flexfnam>, C<d_flock>, C<d_fork>, C<d_fpathconf>, C<d_fpos64_t>,
-C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>, C<d_fsetpos>, C<d_fstatfs>,
-C<d_fstatvfs>, C<d_ftello>, C<d_ftime>, C<d_Gconvert>, C<d_getcwd>,
-C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>, C<d_getgrps>,
-C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>, C<d_gethname>,
-C<d_gethostprotos>, C<d_getlogin>, C<d_getmnt>, C<d_getmntent>,
-C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>, C<d_getnetprotos>,
-C<d_getpbyname>, C<d_getpbynumber>, C<d_getpent>, C<d_getpgid>,
-C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>, C<d_getprior>,
+C<d_fcntl>, C<d_fcntl_can_lock>, C<d_fd_macros>, C<d_fd_set>,
+C<d_fds_bits>, C<d_fgetpos>, C<d_flexfnam>, C<d_flock>, C<d_fork>,
+C<d_fpathconf>, C<d_fpos64_t>, C<d_frexpl>, C<d_fs_data_s>, C<d_fseeko>,
+C<d_fsetpos>, C<d_fstatfs>, C<d_fstatvfs>, C<d_ftello>, C<d_ftime>,
+C<d_Gconvert>, C<d_getcwd>, C<d_getespwnam>, C<d_getfsstat>, C<d_getgrent>,
+C<d_getgrps>, C<d_gethbyaddr>, C<d_gethbyname>, C<d_gethent>,
+C<d_gethname>, C<d_gethostprotos>, C<d_getlogin>, C<d_getmnt>,
+C<d_getmntent>, C<d_getnbyaddr>, C<d_getnbyname>, C<d_getnent>,
+C<d_getnetprotos>, C<d_getpbyname>, C<d_getpbynumber>, C<d_getpent>,
+C<d_getpgid>, C<d_getpgrp2>, C<d_getpgrp>, C<d_getppid>, C<d_getprior>,
C<d_getprotoprotos>, C<d_getprpwnam>, C<d_getpwent>, C<d_getsbyname>,
C<d_getsbyport>, C<d_getsent>, C<d_getservprotos>, C<d_getspnam>,
C<d_gettimeod>, C<d_gnulibc>, C<d_grpasswd>, C<d_hasmntopt>, C<d_htonl>,
=head2 Cwd, getcwd - get pathname of current working directory
-=over
+=over 4
=item SYNOPSIS
subject to
change)
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Global Variables
=head2 DB_File - Perl5 access to Berkeley DB version 1.x
-=over
+=over 4
=item SYNOPSIS
B<DB_HASH>, B<DB_BTREE>, B<DB_RECNO>
-=over
+=over 4
=item Using DB_File with Berkeley DB version 2 or 3
=item DB_HASH
-=over
+=over 4
=item A Simple Example
=item DB_BTREE
-=over
+=over 4
=item Changing the BTREE sort order
=item DB_RECNO
-=over
+=over 4
=item The 'bval' Option
B<filter_store_key>, B<filter_store_value>, B<filter_fetch_key>,
B<filter_fetch_value>
-=over
+=over 4
=item The Filter
=item HINTS AND TIPS
-=over
+=over 4
=item Locking: The Trouble with fd
=item COMMON QUESTIONS
-=over
+=over 4
=item Why is there Perl source in my database?
=head2 Data::Dumper - stringified perl data structures, suitable for both
printing and C<eval>
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Methods
=head2 Devel::DProf - a Perl code profiler
-=over
+=over 4
=item SYNOPSIS
=head2 Devel::Peek - A data debugging tool for the XS programmer
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Memory footprint debugging
=item EXAMPLES
-=over
+=over 4
=item A simple scalar string
=head2 Devel::SelfStubber - generate stubs for a SelfLoading module
-=over
+=over 4
=item SYNOPSIS
=head2 DirHandle - supply object methods for directory handles
-=over
+=over 4
=item SYNOPSIS
=head2 Dumpvalue - provides screen dump of Perl data.
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Creation
=head2 DynaLoader - Dynamically load C libraries into Perl code
-=over
+=over 4
=item SYNOPSIS
=head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into
Perl code
-=over
+=over 4
=item SYNOPSIS
=head2 Encode - character encodings
-=over
+=over 4
=item TERMINOLOGY
=head2 English - use nice English (or awk) names for ugly punctuation
variables
-=over
+=over 4
=item SYNOPSIS
=head2 Env - perl module that imports environment variables as scalars or
arrays
-=over
+=over 4
=item SYNOPSIS
=head2 Errno - System errno constants
-=over
+=over 4
=item SYNOPSIS
=head2 Exporter - Implements default import method for modules
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item How to Export
=head2 Exporter::Heavy - Exporter guts
-=over
+=over 4
=item SYNOPIS
=head2 ExtUtils::Command - utilities to replace common UNIX commands in
Makefiles etc.
-=over
+=over 4
=item SYNOPSIS
test_f file
-=over
+=over 4
=item BUGS
=head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Install - install files from here to there
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Installed - Inventory management of installed modules
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Liblist - determine libraries to use and how to use them
-=over
+=over 4
=item SYNOPSIS
For static extensions, For dynamic extensions, For dynamic extensions
-=over
+=over 4
=item EXTRALIBS
=item PORTABILITY
-=over
+=over 4
=item VMS implementation
=head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in
ExtUtils::MakeMaker
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in
ExtUtils::MakeMaker
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker
-=over
+=over 4
=item SYNOPSIS
=item METHODS
-=over
+=over 4
=item Preloaded methods
updir
-=over
+=over 4
=item SelfLoaded methods
find_perl
-=over
+=over 4
=item Methods to actually produce chunks of text for the Makefile
export_list
-=over
+=over 4
=item SEE ALSO
=head2 ExtUtils::MM_VMS - methods to override UN*X behaviour in
ExtUtils::MakeMaker
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Methods always loaded
rootdir (override)
-=over
+=over 4
=item SelfLoaded methods
=head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in
ExtUtils::MakeMaker
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::MakeMaker - create an extension Makefile
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item How To Write A Makefile.PL
=head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Mksymlists - write linker options files for dynamic
extension
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::Packlist - manage .packlist files
-=over
+=over 4
=item SYNOPSIS
=head2 ExtUtils::testlib - add blib/* directories to @INC
-=over
+=over 4
=item SYNOPSIS
=head2 Fatal - replace functions with equivalents which succeed or die
-=over
+=over 4
=item SYNOPSIS
=head2 Fcntl - load the C Fcntl.h defines
-=over
+=over 4
=item SYNOPSIS
=head2 File::Basename, fileparse - split a pathname into pieces
-=over
+=over 4
=item SYNOPSIS
=head2 File::CheckTree, validate - run many filetest checks on a tree
-=over
+=over 4
=item SYNOPSIS
=head2 File::Compare - Compare files or filehandles
-=over
+=over 4
=item SYNOPSIS
=head2 File::Copy - Copy files or filehandles
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Special behaviour if C<syscopy> is defined (OS/2, VMS and Win32)
=head2 File::DosGlob - DOS like globbing and then some
-=over
+=over 4
=item SYNOPSIS
=head2 File::Find, find - traverse a file tree
-=over
+=over 4
=item SYNOPSIS
=head2 File::Glob - Perl extension for BSD glob routine
-=over
+=over 4
=item SYNOPSIS
=head2 File::Path - create or remove directory trees
-=over
+=over 4
=item SYNOPSIS
=head2 File::Spec - portably perform operations on file names
-=over
+=over 4
=item SYNOPSIS
=head2 File::Spec::Functions - portably perform operations on file names
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Exports
=head2 File::Spec::Mac - File::Spec for MacOS
-=over
+=over 4
=item SYNOPSIS
rel2abs
-=over
+=over 4
=item SEE ALSO
=head2 File::Spec::OS2 - methods for OS/2 file specs
-=over
+=over 4
=item SYNOPSIS
=head2 File::Spec::Unix - methods used by File::Spec
-=over
+=over 4
=item SYNOPSIS
rel2abs
-=over
+=over 4
=item SEE ALSO
=head2 File::Spec::VMS - methods for VMS file specs
-=over
+=over 4
=item SYNOPSIS
fixpath
-=over
+=over 4
=item Methods always loaded
rel2abs (override)
-=over
+=over 4
=item SEE ALSO
=head2 File::Spec::Win32 - methods for Win32 file specs
-=over
+=over 4
=item SYNOPSIS
catpath
-=over
+=over 4
=item SEE ALSO
=head2 File::Temp - return name and handle of a temporary file safely
-=over
+=over 4
=item PORTABILITY
=back
-=over
+=over 4
=item FUNCTIONS
B<tempdir>
-=over
+=over 4
=item MKTEMP FUNCTIONS
B<mktemp>
-=over
+=over 4
=item POSIX FUNCTIONS
B<tmpfile>
-=over
+=over 4
=item ADDITIONAL FUNCTIONS
=back
-=over
+=over 4
=item UTILITY FUNCTIONS
=back
-=over
+=over 4
=item PACKAGE VARIABLES
TopSystemUID
-=over
+=over 4
=item WARNING
=head2 File::stat - by-name interface to Perl's built-in stat() functions
-=over
+=over 4
=item SYNOPSIS
=head2 FileCache - keep more files open than the system permits
-=over
+=over 4
=item SYNOPSIS
=head2 FileHandle - supply object methods for filehandles
-=over
+=over 4
=item SYNOPSIS
=head2 FindBin - Locate directory of original perl script
-=over
+=over 4
=item SYNOPSIS
=head2 GDBM_File - Perl5 access to the gdbm library.
-=over
+=over 4
=item SYNOPSIS
=head2 Getopt::Long - Extended processing of command line options
-=over
+=over 4
=item SYNOPSIS
=item Getting Started with Getopt::Long
-=over
+=over 4
=item Simple options
=item Advanced Possibilities
-=over
+=over 4
=item Object oriented interface
=item Legacy
-=over
+=over 4
=item Default destinations
=item Trouble Shooting
-=over
+=over 4
=item Warning: Ignoring '!' modifier for short option
=head2 Getopt::Std, getopt - Process single-character switches with switch
clustering
-=over
+=over 4
=item SYNOPSIS
=head2 I18N::Collate - compare 8-bit scalar data according to the current
locale
-=over
+=over 4
=item SYNOPSIS
=head2 IO - load various IO modules
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Dir - supply object methods for directory handles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::File - supply object methods for filehandles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Handle - supply object methods for I/O handles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Pipe - supply object methods for pipes
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Poll - Object interface to system poll call
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Seekable - supply seek based methods for I/O objects
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Select - OO interface to the select system call
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Socket - Object interface to socket communications
-=over
+=over 4
=item SYNOPSIS
=head2 IO::Socket::INET - Object interface for AF_INET domain sockets
-=over
+=over 4
=item SYNOPSIS
new ( [ARGS] )
-=over
+=over 4
=item METHODS
=head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory
handles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::File, IO::File - supply object methods for filehandles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O
handles
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for
I/O objects
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Select, IO::Select - OO interface to the select system
call
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket
communications
-=over
+=over 4
=item SYNOPSIS
=head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for
AF_INET domain sockets
-=over
+=over 4
=item SYNOPSIS
new ( [ARGS] )
-=over
+=over 4
=item METHODS
=head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for
AF_UNIX domain sockets
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::Msg - SysV Msg IPC object class
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::Open2, open2 - open a process for both reading and writing
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::Open3, open3 - open a process for reading, writing, and error
handling
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::Semaphore - SysV Semaphore IPC object class
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::SysV - SysV IPC constants
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class
-=over
+=over 4
=item SYNOPSIS
=head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object
class
-=over
+=over 4
=item SYNOPSIS
=head2 Math::BigFloat - Arbitrary length float math package
-=over
+=over 4
=item SYNOPSIS
=head2 Math::BigInt - Arbitrary size integer math package
-=over
+=over 4
=item SYNOPSIS
=head2 Math::Complex - complex numbers and associated mathematical
functions
-=over
+=over 4
=item SYNOPSIS
=item STRINGIFICATION
-=over
+=over 4
=item CHANGED IN PERL 5.6
=head2 Math::Trig - trigonometric functions
-=over
+=over 4
=item SYNOPSIS
B<tan>
-=over
+=over 4
=item ERRORS DUE TO DIVISION BY ZERO
=item RADIAL COORDINATE CONVERSIONS
-=over
+=over 4
=item COORDINATE SYSTEMS
=head2 NDBM_File - Tied access to ndbm files
-=over
+=over 4
=item SYNOPSIS
=item DIAGNOSTICS
-=over
+=over 4
=item C<ndbm store returned -1, errno 22, key "..." at ...>
=head2 Net::Ping - check a remote host for reachability
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item Functions
=head2 Net::hostent - by-name interface to Perl's built-in gethost*()
functions
-=over
+=over 4
=item SYNOPSIS
=head2 Net::netent - by-name interface to Perl's built-in getnet*()
functions
-=over
+=over 4
=item SYNOPSIS
=head2 Net::protoent - by-name interface to Perl's built-in getproto*()
functions
-=over
+=over 4
=item SYNOPSIS
=head2 Net::servent - by-name interface to Perl's built-in getserv*()
functions
-=over
+=over 4
=item SYNOPSIS
=head2 O - Generic interface to Perl Compiler backends
-=over
+=over 4
=item SYNOPSIS
=head2 ODBM_File - Tied access to odbm files
-=over
+=over 4
=item SYNOPSIS
=item DIAGNOSTICS
-=over
+=over 4
=item C<odbm store returned -1, errno 22, key "..." at ...>
=head2 Opcode - Disable named opcodes when compiling perl code
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item Predefined Opcode Tags
=head2 Opcode::Safe, Safe - Compile and execute code in restricted
compartments
-=over
+=over 4
=item SYNOPSIS
=item WARNING
-=over
+=over 4
=item RECENT CHANGES
=head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when
compiling
-=over
+=over 4
=item SYNOPSIS
=head2 POSIX - Perl interface to IEEE Std 1003.1
-=over
+=over 4
=item SYNOPSIS
=item CLASSES
-=over
+=over 4
=item POSIX::SigAction
=head2 Pod::Checker, podchecker() - check pod documents for syntax errors
-=over
+=over 4
=item SYNOPSIS
=item OPTIONS/ARGUMENTS
-=over
+=over 4
=item podchecker()
=item DIAGNOSTICS
-=over
+=over 4
=item Errors
C<$checker-E<gt>hyperlink()>
-=over
+=over 4
=item AUTHOR
=head2 Pod::Find - find POD documents in directory trees
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item C<pod_find( { %opts } , @directories )>
=back
-=over
+=over 4
=item C<simplify_name( $str )>
=back
-=over
+=over 4
=item C<pod_where( { %opts }, $pod )>
=back
-=over
+=over 4
=item C<contains_pod( $file , $verbose )>
=back
-=over
+=over 4
=item AUTHOR
=head2 Pod::Html - module to convert pod files to HTML
-=over
+=over 4
=item SYNOPSIS
=head2 Pod::InputObjects - objects representing POD input paragraphs,
commands, etc.
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item B<Pod::InputSource>
=back
-=over
+=over 4
=item B<new()>
=back
-=over
+=over 4
=item B<name()>
=back
-=over
+=over 4
=item B<handle()>
=back
-=over
+=over 4
=item B<was_cutting()>
=back
-=over
+=over 4
=item B<Pod::Paragraph>
=back
-=over
+=over 4
=item Pod::Paragraph-E<gt>B<new()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<cmd_name()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<text()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<raw_text()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<cmd_prefix()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<cmd_separator()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<parse_tree()>
=back
-=over
+=over 4
=item $pod_para-E<gt>B<file_line()>
=back
-=over
+=over 4
=item B<Pod::InteriorSequence>
=back
-=over
+=over 4
=item Pod::InteriorSequence-E<gt>B<new()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<cmd_name()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<prepend()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<append()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<nested()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<raw_text()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<left_delimiter()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<right_delimiter()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<parse_tree()>
=back
-=over
+=over 4
=item $pod_seq-E<gt>B<file_line()>
=back
-=over
+=over 4
=item Pod::InteriorSequence::B<DESTROY()>
=back
-=over
+=over 4
=item B<Pod::ParseTree>
=back
-=over
+=over 4
=item Pod::ParseTree-E<gt>B<new()>
=back
-=over
+=over 4
=item $ptree-E<gt>B<top()>
=back
-=over
+=over 4
=item $ptree-E<gt>B<children()>
=back
-=over
+=over 4
=item $ptree-E<gt>B<prepend()>
=back
-=over
+=over 4
=item $ptree-E<gt>B<append()>
=back
-=over
+=over 4
=item $ptree-E<gt>B<raw_text()>
=back
-=over
+=over 4
=item Pod::ParseTree::B<DESTROY()>
=back
-=over
+=over 4
=item SEE ALSO
=head2 Pod::LaTeX - Convert Pod data to formatted Latex
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item OBJECT METHODS
=back
-=over
+=over 4
=item Data Accessors
B<Lists>
-=over
+=over 4
=item Subclassed methods
B<interior_sequence>
-=over
+=over 4
=item List Methods
B<add_item>
-=over
+=over 4
=item Methods for headings
=back
-=over
+=over 4
=item Internal methods
B<_clean_latex_commands>
-=over
+=over 4
=item NOTES
=head2 Pod::Man - Convert POD data to formatted *roff input
-=over
+=over 4
=item SYNOPSIS
=head2 Pod::ParseUtils - helpers for POD parsing and conversion
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item Pod::List
$list-E<gt>tag()
-=over
+=over 4
=item Pod::Hyperlink
$link-E<gt>link()
-=over
+=over 4
=item Pod::Cache
$cache-E<gt>find_page($name)
-=over
+=over 4
=item Pod::Cache::Item
$cacheitem-E<gt>idx()
-=over
+=over 4
=item AUTHOR
=head2 Pod::Parser - base class for creating POD filters and translators
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item RECOMMENDED SUBROUTINE/METHOD OVERRIDES
=back
-=over
+=over 4
=item B<command()>
=back
-=over
+=over 4
=item B<verbatim()>
=back
-=over
+=over 4
=item B<textblock()>
=back
-=over
+=over 4
=item B<interior_sequence()>
=back
-=over
+=over 4
=item OPTIONAL SUBROUTINE/METHOD OVERRIDES
=back
-=over
+=over 4
=item B<new()>
=back
-=over
+=over 4
=item B<initialize()>
=back
-=over
+=over 4
=item B<begin_pod()>
=back
-=over
+=over 4
=item B<begin_input()>
=back
-=over
+=over 4
=item B<end_input()>
=back
-=over
+=over 4
=item B<end_pod()>
=back
-=over
+=over 4
=item B<preprocess_line()>
=back
-=over
+=over 4
=item B<preprocess_paragraph()>
=back
-=over
+=over 4
=item METHODS FOR PARSING AND PROCESSING
=back
-=over
+=over 4
=item B<parse_text()>
=back
-=over
+=over 4
=item B<interpolate()>
=back
-=over
+=over 4
=item B<parse_paragraph()>
=back
-=over
+=over 4
=item B<parse_from_filehandle()>
=back
-=over
+=over 4
=item B<parse_from_file()>
=back
-=over
+=over 4
=item ACCESSOR METHODS
=back
-=over
+=over 4
=item B<errorsub()>
=back
-=over
+=over 4
=item B<cutting()>
=back
-=over
+=over 4
=item B<parseopts()>
=back
-=over
+=over 4
=item B<output_file()>
=back
-=over
+=over 4
=item B<output_handle()>
=back
-=over
+=over 4
=item B<input_file()>
=back
-=over
+=over 4
=item B<input_handle()>
=back
-=over
+=over 4
=item B<input_streams()>
=back
-=over
+=over 4
=item B<top_stream()>
=back
-=over
+=over 4
=item PRIVATE METHODS AND DATA
=back
-=over
+=over 4
=item B<_push_input_stream()>
=back
-=over
+=over 4
=item B<_pop_input_stream()>
=back
-=over
+=over 4
=item TREE-BASED PARSING
=head2 Pod::Plainer - Perl extension for converting Pod to old style Pod.
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item EXPORT
=head2 Pod::Select, podselect() - extract selected sections of POD from
input
-=over
+=over 4
=item SYNOPSIS
=back
-=over
+=over 4
=item OBJECT METHODS
=back
-=over
+=over 4
=item B<curr_headings()>
=back
-=over
+=over 4
=item B<select()>
=back
-=over
+=over 4
=item B<add_selection()>
=back
-=over
+=over 4
=item B<clear_selections()>
=back
-=over
+=over 4
=item B<match_section()>
=back
-=over
+=over 4
=item B<is_selected()>
=back
-=over
+=over 4
=item EXPORTED FUNCTIONS
=back
-=over
+=over 4
=item B<podselect()>
=back
-=over
+=over 4
=item PRIVATE METHODS AND DATA
=back
-=over
+=over 4
=item B<_compile_section_spec()>
=back
-=over
+=over 4
=item $self->{_SECTION_HEADINGS}
=back
-=over
+=over 4
=item $self->{_SELECTED_SECTIONS}
=back
-=over
+=over 4
=item SEE ALSO
=head2 Pod::Text - Convert POD data to formatted ASCII text
-=over
+=over 4
=item SYNOPSIS
=head2 Pod::Text::Color - Convert POD data to formatted color ASCII text
-=over
+=over 4
=item SYNOPSIS
=head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII
text with format escapes
-=over
+=over 4
=item SYNOPSIS
=head2 Pod::Usage, pod2usage() - print a usage message from embedded pod
documentation
-=over
+=over 4
=item SYNOPSIS
=item EXAMPLES
-=over
+=over 4
=item Recommended Use
=head2 SDBM_File - Tied access to sdbm files
-=over
+=over 4
=item SYNOPSIS
=item DIAGNOSTICS
-=over
+=over 4
=item C<sdbm store returned -1, errno 22, key "..." at ...>
=head2 Safe - Compile and execute code in restricted compartments
-=over
+=over 4
=item SYNOPSIS
=item WARNING
-=over
+=over 4
=item RECENT CHANGES
=head2 Search::Dict, look - search for key in dictionary file
-=over
+=over 4
=item SYNOPSIS
=head2 SelectSaver - save and restore selected file handle
-=over
+=over 4
=item SYNOPSIS
=head2 SelfLoader - load functions only on demand
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item The __DATA__ token
=head2 Shell - run shell commands transparently within perl
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item OBJECT ORIENTED SYNTAX
=head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C
socket.h defines and structure manipulators
-=over
+=over 4
=item SYNOPSIS
=head2 Storable - persistency for perl data structures
-=over
+=over 4
=item SYNOPSIS
=item WIZARDS ONLY
-=over
+=over 4
=item Hooks
=head2 Symbol - manipulate Perl symbols and their names
-=over
+=over 4
=item SYNOPSIS
=head2 Sys::Hostname - Try every conceivable way to get hostname
-=over
+=over 4
=item SYNOPSIS
=head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl
interface to the UNIX syslog(3) calls
-=over
+=over 4
=item SYNOPSIS
=head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog -
Perl interface to the UNIX syslog(3) calls
-=over
+=over 4
=item SYNOPSIS
=head2 Term::ANSIColor - Color screen output using ANSI escape sequences
-=over
+=over 4
=item SYNOPSIS
=head2 Term::Cap - Perl termcap interface
-=over
+=over 4
=item SYNOPSIS
=head2 Term::Complete - Perl word completion module
-=over
+=over 4
=item SYNOPSIS
=head2 Term::ReadLine - Perl interface to various C<readline> packages. If
no real package is found, substitutes stubs instead of basic functions.
-=over
+=over 4
=item SYNOPSIS
=head2 Test - provides a simple framework for writing test scripts
-=over
+=over 4
=item SYNOPSIS
=head2 Test::Harness - run perl standard test scripts with statistics
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item The test script output
=head2 Text::Abbrev, abbrev - create an abbreviation table from a list
-=over
+=over 4
=item SYNOPSIS
=head2 Text::ParseWords - parse text into an array of tokens or array of
arrays
-=over
+=over 4
=item SYNOPSIS
=head2 Text::Soundex - Implementation of the Soundex Algorithm as Described
by Knuth
-=over
+=over 4
=item SYNOPSIS
=head2 Text::Tabs -- expand and unexpand tabs per the unix expand(1) and
unexpand(1)
-=over
+=over 4
=item SYNOPSIS
=head2 Text::Wrap - line wrapping to form simple paragraphs
-=over
+=over 4
=item SYNOPSIS
=head2 Thread - manipulate threads in Perl (EXPERIMENTAL, subject to
change)
-=over
+=over 4
=item SYNOPSIS
=item METHODS
-join, eval, detach, equal, tid
+join, eval, detach, equal, tid, flags, done
=item LIMITATIONS
=head2 Thread::Queue - thread-safe queues
-=over
+=over 4
=item SYNOPSIS
=head2 Thread::Semaphore - thread-safe semaphores
-=over
+=over 4
=item SYNOPSIS
=head2 Thread::Signal - Start a thread which runs signal handlers reliably
-=over
+=over 4
=item SYNOPSIS
=head2 Thread::Specific - thread-specific keys
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::Array - base class for tied arrays
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::Handle, Tie::StdHandle - base class definitions for tied
handles
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::Hash, Tie::StdHash - base class definitions for tied hashes
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::RefHash - use references as hash keys
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::Scalar, Tie::StdScalar - base class definitions for tied
scalars
-=over
+=over 4
=item SYNOPSIS
=head2 Tie::SubstrHash - Fixed-table-size, fixed-key-length hashing
-=over
+=over 4
=item SYNOPSIS
=head2 Time::Local - efficiently compute time from local and GMT time
-=over
+=over 4
=item SYNOPSIS
=head2 Time::gmtime - by-name interface to Perl's built-in gmtime()
function
-=over
+=over 4
=item SYNOPSIS
=head2 Time::localtime - by-name interface to Perl's built-in localtime()
function
-=over
+=over 4
=item SYNOPSIS
=head2 Time::tm - internal object used by Time::gmtime and Time::localtime
-=over
+=over 4
=item SYNOPSIS
=head2 UNIVERSAL - base class for ALL classes (blessed references)
-=over
+=over 4
=item SYNOPSIS
=head2 User::grent - by-name interface to Perl's built-in getgr*()
functions
-=over
+=over 4
=item SYNOPSIS
=head2 User::pwent - by-name interface to Perl's built-in getpw*()
functions
-=over
+=over 4
=item SYNOPSIS
=item DESCRIPTION
-=over
+=over 4
=item System Specifics
=head2 Win32 - Interfaces to some Win32 API Functions
-=over
+=over 4
=item DESCRIPTION
-=over
+=over 4
=item Alphabetical Listing of Win32 Functions
=head2 XSLoader - Dynamically load C libraries into Perl code
-=over
+=over 4
=item SYNOPSIS
Here should be listed all the extra programs' documentation, but they
don't all have manual pages yet:
-=over
+=over 4
=item a2p