From d420ca496e0666582fb2271d93a0641c43e81971 Mon Sep 17 00:00:00 2001 From: Andy Dougherty Date: Fri, 10 Nov 2000 07:18:00 -0500 Subject: [PATCH] README.solaris Message-ID: p4raw-id: //depot/perl@7639 --- INSTALL | 55 -- MANIFEST | 1 + README.solaris | 475 ++++++++++++++ hints/solaris_2.sh | 186 +----- pod/buildtoc.PL | 2 + pod/perl.pod | 1 + pod/perltoc.pod | 1740 +++++++++++++++++++++++++++------------------------- 7 files changed, 1388 insertions(+), 1072 deletions(-) create mode 100644 README.solaris diff --git a/INSTALL b/INSTALL index 50e7773..4d4005b 100644 --- a/INSTALL +++ b/INSTALL @@ -1397,36 +1397,6 @@ numbers and function name may vary in different versions of perl): it might well be a symptom of the gcc "varargs problem". See the previous L<"varargs"> item. -=item Solaris and SunOS dynamic loading - -If you have problems with dynamic loading using gcc on SunOS or -Solaris, and you are using GNU as and GNU ld, you may need to add --B/bin/ (for SunOS) or -B/usr/ccs/bin/ (for Solaris) to your -$ccflags, $ldflags, and $lddlflags so that the system's versions of as -and ld are used. Note that the trailing '/' is required. -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. - -One convenient way to ensure you are not using GNU as and ld is to -invoke Configure with - - sh Configure -Dcc='gcc -B/usr/ccs/bin/' - -for Solaris systems. For a SunOS system, you must use -B/bin/ -instead. - -Alternatively, recent versions of GNU ld reportedly work if you -include C<-Wl,-export-dynamic> in the ccdlflags variable in -config.sh. - -=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<"Solaris and SunOS dynamic loading">. - =item LD_LIBRARY_PATH If you run into dynamic loading problems, check your setting of @@ -1435,18 +1405,6 @@ Perl library (libperl.a rather than libperl.so) it should build fine with LD_LIBRARY_PATH unset, though that may depend on details of your local set-up. -=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). - -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 implementation of those -functions instead. [Thanks to Tim Bunce for this explanation.] - =item nm extraction If Configure seems to be having trouble finding library functions, @@ -1632,24 +1590,11 @@ official site named at the start of this document. If you do find that any site is carrying a corrupted or incomplete source code archive, please report it to the site's maintainer. -This message can also be a symptom of using (say) a GNU tar compiled -for SunOS4 on Solaris. When you run SunOS4 binaries on Solaris the -run-time system magically alters pathnames matching m#lib/locale# - so -when tar tries to create lib/locale.pm a differently-named file gets -created instead. - -You may find the file under its assumed name and be able to rename it -back. Or use Sun's tar to do the extract. - =item invalid token: ## You are using a non-ANSI-compliant C compiler. See L. -=item lib/locale.pm: No such file or directory - -See L. - =item Miscellaneous Some additional things that have been reported for either perl4 or perl5: diff --git a/MANIFEST b/MANIFEST index 2b47007..4da42f1 100644 --- a/MANIFEST +++ b/MANIFEST @@ -52,6 +52,7 @@ README.os390 Notes about OS/390 (nee MVS) port README.plan9 Notes about Plan9 port README.posix-bc Notes about BS2000 POSIX port README.qnx Notes about QNX port +README.solaris Notes about Solaris port README.threads Notes about multithreading README.vmesa Notes about VM/ESA port README.vms Notes about installing the VMS port diff --git a/README.solaris b/README.solaris new file mode 100644 index 0000000..eccf905 --- /dev/null +++ b/README.solaris @@ -0,0 +1,475 @@ +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. + +=item Precompiled Binaries + +Precompiled binaries, links to many sites, and much, much more is +available at L. + +=item Solaris Documentation + +All Solaris documentation is available on-line at L. + +=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. + +=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, ActiveState L, +and L 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. + +=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 +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. + +=head1 LAST MODIFIED + +$Id: README.solaris,v 1.3 2000/11/09 19:11:27 doughera Exp $ diff --git a/hints/solaris_2.sh b/hints/solaris_2.sh index e8175f2..dd2958a 100644 --- a/hints/solaris_2.sh +++ b/hints/solaris_2.sh @@ -1,9 +1,11 @@ # hints/solaris_2.sh -# Last modified: Tue Apr 13 13:12:49 EDT 1999 +# Last modified: Thu Nov 9 14:21:02 EST 2000 # Andy Dougherty # Based on input from lots of folks, especially # Dean Roehrich - +# +# See README.solaris for additional information. +# # If perl fails tests that involve dynamic loading of extensions, and # you are using gcc, be sure that you are NOT using GNU as and ld. One # way to do that is to invoke Configure with @@ -511,183 +513,3 @@ case "$uselongdouble" in esac rm -f try.c try.o try - -# This is just a trick to include some useful notes. -cat > /dev/null <<'End_of_Solaris_Notes' - -Here are some notes kindly contributed by Dean Roehrich. - ------ -Generic notes about building Perl5 on Solaris: -- Use /usr/ccs/bin/make. -- If you use GNU make, remove its setgid bit. -- Remove all instances of *ucb* from your path. -- Make sure libucb is not in /usr/lib (it should be in /usr/ucblib). -- Do not use GNU as or GNU ld, or any of GNU binutils or GNU libc. -- Do not use /usr/ucb/cc. -- Do not change Configure's default answers, except for the path names. -- Do not use -lmalloc. -- Do not build on SunOS 4 and expect it to work properly on SunOS 5. -- /dev/fd must be mounted if you want set-uid scripts to work. - - -Here are the gcc-related questions and answers from the Solaris 2 FAQ. Note -the themes: - - run fixincludes - - run fixincludes correctly - - don't use GNU as or GNU ld - -Question 5.7 covers the __builtin_va_alist problem people are always seeing. -Question 6.1.3 covers the GNU as and GNU ld issues which are always biting -people. -Question 6.9 is for those who are still trying to compile Perl4. - -The latest Solaris 2 FAQ can be found in the following locations: - rtfm.mit.edu:/pub/usenet-by-group/comp.sys.sun.admin - ftp.fwi.uva.nl:/pub/solaris - -Perl5 comes with a script in the top-level directory called "myconfig" which -will print a summary of the configuration in your config.sh. My summary for -Solaris 2.4 and gcc 2.6.3 follows. I have also built with gcc 2.7.0 and the -results are identical. This configuration was generated with Configure's -d -option (take all defaults, don't bother prompting me). All tests pass for -Perl5.001, patch.1m. - -Summary of my perl5 (patchlevel 1) configuration: - Platform: - osname=solaris, osver=2.4, archname=sun4-solaris - uname='sunos poplar 5.4 generic_101945-27 sun4d sparc ' - hint=recommended - Compiler: - cc='gcc', optimize='-O', ld='gcc' - cppflags='' - ccflags ='' - ldflags ='' - stdchar='unsigned char', d_stdstdio=define, usevfork=false - voidflags=15, castflags=0, d_casti32=define, d_castneg=define - intsize=4, alignbytes=8, usemymalloc=y, randbits=15 - Libraries: - so=so - libpth=/lib /usr/lib /usr/ccs/lib /usr/local/lib - libs=-lsocket -lnsl -ldl -lm -lc -lcrypt - libc=/usr/lib/libc.so - Dynamic Linking: - dlsrc=dl_dlopen.xs, dlext=so, d_dlsymun=undef - cccdlflags='-fpic', ccdlflags=' ', lddlflags='-G' - - -Dean -roehrich@cray.com -9/7/95 - ------------ - -From: Casper.Dik@Holland.Sun.COM (Casper H.S. Dik - Network Security Engineer) -Subject: Solaris 2 Frequently Asked Questions (FAQ) 1.48 -Date: 25 Jul 1995 12:20:18 GMT - -5.7) Why do I get __builtin_va_alist or __builtin_va_arg_incr undefined? - - You're using gcc without properly installing the gcc fixed - include files. Or you ran fixincludes after installing gcc - w/o moving the gcc supplied varargs.h and stdarg.h files - out of the way and moving them back again later. This often - happens when people install gcc from a binary distribution. - If there's a tmp directory in gcc's include directory, fixincludes - didn't complete. You should have run "just-fixinc" instead. - - Another possible cause is using ``gcc -I/usr/include.'' - -6.1) Where is the C compiler or where can I get one? - - [...] - - 3) Gcc. - - Gcc is available from the GNU archives in source and binary - form. Look in a directory called sparc-sun-solaris2 for - binaries. You need gcc 2.3.3 or later. You should not use - GNU as or GNU ld. Make sure you run just-fixinc if you use - a binary distribution. Better is to get a binary version and - use that to bootstrap gcc from source. - - [...] - - When you install gcc, don't make the mistake of installing - GNU binutils or GNU libc, they are not as capable as their - counterparts you get with Solaris 2.x. - -6.9) I can't get perl 4.036 to compile or run. - - Run Configure, and use the solaris_2_0 hints, *don't* use - the solaris_2_1 hints and don't use the config.sh you may - already have. First you must make sure Configure and make - don't find /usr/ucb/cc. (It must use gcc or the native C - compiler: /opt/SUNWspro/bin/cc) - - Some questions need a special answer. - - Are your system (especially dbm) libraries compiled with gcc? [y] y - - yes: gcc 2.3.3 or later uses the standard calling - conventions, same as Sun's C. - - Any additional cc flags? [ -traditional -Dvolatile=__volatile__ - -I/usr/ucbinclude] -traditional -Dvolatile=__volatile__ - Remove /usr/ucbinclude. - - Any additional libraries? [-lsocket -lnsl -ldbm -lmalloc -lm - -lucb] -lsocket -lnsl -lm - - Don't include -ldbm, -lmalloc and -lucb. - - Perl 5 compiled out of the box. - -7.0) 64-bitness, from Alan Burlison (added by jhi 2000-02-21) - - You need a machine running Solaris 2.7 or above. - - Here's some rules: - - 1. Solaris 2.7 and above will run in either 32 bit or 64 bit mode, - via a reboot. - 2. You can build 64 bit apps whilst running 32 bit mode and vice-versa. - 3. 32 bit apps will run under Solaris running in either 32 or 64 bit mode. - 4. 64 bit apps require Solaris to be running 64 bit mode - 5. It is possible to select the appropriate 32 or 64 bit version of an - app at run-time using isaexec(3). - 6. 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 - 7. To compile 64 bit 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 - - > > Now, what should we do, then? Should -Duse64bits in a v9 box cause - > > Perl to compiled in v9 mode? Or should we for compatibility stick - > > with 32 bit builds and let the people in the know to add the -xarch=v9 - > > to ccflags (and ldflags?)? - - > I think the second (explicit) mechanism should be the default. Unless - > you want to allocate more than ~ 4Gb of memory inside Perl, you don't - > need Perl to be a 64-bit app. Put it this way, on a machine running - > Solaris 8, there are 463 executables under /usr/bin, but only 15 of - > those require 64 bit versions - mainly because they invade the kernel - > address space, e.g. adb, kgmon etc. Certainly we don't recommend users - > to build 64 bit apps unless they need the address space. - -End_of_Solaris_Notes - diff --git a/pod/buildtoc.PL b/pod/buildtoc.PL index ff8d33c..ba15e44 100644 --- a/pod/buildtoc.PL +++ b/pod/buildtoc.PL @@ -160,6 +160,7 @@ if (-d "pod") { perlos2 perlos390 perlposix-bc + perlsolaris perlvms perlvos perlwin32 @@ -176,6 +177,7 @@ if (-d "pod") { perlos2 perlos390 perlposix-bc + perlsolaris perlvms perlvos perlwin32 diff --git a/pod/perl.pod b/pod/perl.pod index 97514ee..aa4e77f 100644 --- a/pod/perl.pod +++ b/pod/perl.pod @@ -114,6 +114,7 @@ For ease of access, the Perl manual has been split up into several sections: perlos2 Perl notes for OS/2 perlos390 Perl notes for OS/390 perlposix-bc Perl notes for POSIX-BC + perlsolaris Perl notes for Solaris perlvms Perl notes for VMS perlvos Perl notes for Stratus VOS perlwin32 Perl notes for Windows diff --git a/pod/perltoc.pod b/pod/perltoc.pod index 098d2d8..87737b3 100644 --- a/pod/perltoc.pod +++ b/pod/perltoc.pod @@ -13,7 +13,7 @@ through to locate the proper section you're looking for. =head2 perl - Practical Extraction and Report Language -=over +=over 4 =item SYNOPSIS @@ -50,7 +50,7 @@ environment, with integrated editor support, POSIX 1003.1 compliant library =head2 perlfaq - frequently asked questions about Perl ($Date: 1999/05/23 20:38:02 $) -=over +=over 4 =item DESCRIPTION @@ -62,8 +62,8 @@ compare with other languages like Java, Python, REXX, Scheme, or Tcl?, Can 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: Obtaining and +How can I convince my sysadmin/supervisor/employees to use (version +5/5.005/Perl) instead of some other language?, L: 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 @@ -95,7 +95,7 @@ line?, Why don't perl one-liners work on my DOS/Mac/VMS system?, Where can 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: Data Manipulation, Why am I getting long decimals (eg, 19.9499999999999) instead of the numbers I should be getting (eg, 19.95)?, @@ -183,7 +183,7 @@ unmaintainable code?, I'm having trouble matching over more than one line. 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?, How can I quote a variable to use in a regex?, What is C really for?, How do I use a regular expression to strip C style comments from a file?, @@ -229,7 +229,7 @@ background?, How do I trap control characters/signals?, How do I modify the 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 @@ -254,7 +254,7 @@ CPAN?, What's the difference between require and use?, How do I keep my own 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: -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 @@ -271,7 +271,7 @@ hostname/domainname/IP address?, How do I fetch a news article or the 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 @@ -286,7 +286,7 @@ authors =item Author and Copyright Information -=over +=over 4 =item Bundled Distributions @@ -296,20 +296,21 @@ authors =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 @@ -327,7 +328,7 @@ DESCRIPTION =head2 perlbook - Perl book information -=over +=over 4 =item DESCRIPTION @@ -335,11 +336,11 @@ DESCRIPTION =head2 perlsyn - Perl syntax -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Declarations @@ -367,11 +368,11 @@ DESCRIPTION =head2 perldata - Perl data types -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Variable names @@ -395,13 +396,13 @@ DESCRIPTION =head2 perlop - Perl operators and precedence -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Terms and List Operators (Leftward) @@ -490,13 +491,13 @@ regular expressions =head2 perlsub - Perl subroutines -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Private Variables via my() @@ -534,11 +535,11 @@ You want to temporarily change just one element of an array or hash =head2 perlfunc - Perl builtin functions -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Perl Functions by Category @@ -636,7 +637,7 @@ LIST, write FILEHANDLE, write EXPR, write, y/// =head2 perlreftut - Mark's very short tutorial about references -=over +=over 4 =item DESCRIPTION @@ -646,7 +647,7 @@ LIST, write FILEHANDLE, write EXPR, write, y/// =item Syntax -=over +=over 4 =item Making References @@ -666,7 +667,7 @@ LIST, write FILEHANDLE, write EXPR, write, y/// =item Credits -=over +=over 4 =item Distribution Conditions @@ -676,7 +677,7 @@ LIST, write FILEHANDLE, write EXPR, write, y/// =head2 perldsc - Perl Data Structures Cookbook -=over +=over 4 =item DESCRIPTION @@ -697,7 +698,7 @@ more elaborate constructs =item ARRAYS OF ARRAYS -=over +=over 4 =item Declaration of a ARRAY OF ARRAYS @@ -709,7 +710,7 @@ more elaborate constructs =item HASHES OF ARRAYS -=over +=over 4 =item Declaration of a HASH OF ARRAYS @@ -721,7 +722,7 @@ more elaborate constructs =item ARRAYS OF HASHES -=over +=over 4 =item Declaration of a ARRAY OF HASHES @@ -733,7 +734,7 @@ more elaborate constructs =item HASHES OF HASHES -=over +=over 4 =item Declaration of a HASH OF HASHES @@ -745,7 +746,7 @@ more elaborate constructs =item MORE ELABORATE RECORDS -=over +=over 4 =item Declaration of MORE ELABORATE RECORDS @@ -765,13 +766,13 @@ more elaborate constructs =head2 perlrequick - Perl regular expressions quick start -=over +=over 4 =item DESCRIPTION =item The Guide -=over +=over 4 =item Simple word matching @@ -812,7 +813,7 @@ times =item AUTHOR AND COPYRIGHT -=over +=over 4 =item Acknowledgments @@ -822,11 +823,11 @@ times =head2 perlpod - plain old documentation -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Verbatim Paragraph @@ -850,7 +851,7 @@ times =head2 perlstyle - Perl style guide -=over +=over 4 =item DESCRIPTION @@ -858,11 +859,11 @@ times =head2 perltrap - Perl traps for the unwary -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Awk Traps @@ -943,13 +944,13 @@ LIMIT specified =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 @@ -979,7 +980,7 @@ PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to the VMS port) =head2 perldiag - various Perl diagnostics -=over +=over 4 =item DESCRIPTION @@ -987,11 +988,11 @@ PERL_ROOT (specific to the VMS port), SYS$LOGIN (specific to the VMS port) =head2 perllexwarn - Perl Lexical Warnings -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Default Warnings and Optional Warnings @@ -1021,7 +1022,7 @@ B<-w>, B<-W>, B<-X> =head2 perldebtut - Perl debugging tutorial -=over +=over 4 =item DESCRIPTION @@ -1055,13 +1056,13 @@ B<-w>, B<-W>, B<-X> =head2 perldebug - Perl debugging -=over +=over 4 =item DESCRIPTION =item The Perl Debugger -=over +=over 4 =item Debugger Commands @@ -1113,11 +1114,11 @@ listing =head2 perlvar - Perl predefined variables -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Predefined Names @@ -1163,7 +1164,7 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =head2 perllol - Manipulating Arrays of Arrays in Perl -=over +=over 4 =item DESCRIPTION @@ -1183,13 +1184,13 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =head2 perlopentut - tutorial on opening things in Perl -=over +=over 4 =item DESCRIPTION =item Open E la shell -=over +=over 4 =item Simple Opens @@ -1205,7 +1206,7 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =item Open E la C -=over +=over 4 =item Permissions E la mode @@ -1213,7 +1214,7 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =item Obscure Open Tricks -=over +=over 4 =item Re-Opening Files (dups) @@ -1229,7 +1230,7 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =item Other I/O Issues -=over +=over 4 =item Opening Non-File Files @@ -1249,13 +1250,13 @@ ${^WIDE_SYSTEM_CALLS}, $EXECUTABLE_NAME, $^X, $ARGV, @ARGV, @INC, @_, %INC, =head2 perlretut - Perl regular expressions tutorial -=over +=over 4 =item DESCRIPTION =item Part 1: The basics -=over +=over 4 =item Simple word matching @@ -1351,7 +1352,7 @@ and optimizing the final combined regexp =item Part 2: Power tools -=over +=over 4 =item More on characters, strings, and character classes @@ -1379,7 +1380,7 @@ and optimizing the final combined regexp =item AUTHOR AND COPYRIGHT -=over +=over 4 =item Acknowledgments @@ -1389,13 +1390,13 @@ and optimizing the final combined regexp =head2 perlre - Perl regular expressions -=over +=over 4 =item DESCRIPTION i, m, s, x -=over +=over 4 =item Regular Expressions @@ -1435,13 +1436,13 @@ C<(?(condition)yes-pattern|no-pattern)> =head2 perlref - Perl references and nested data structures -=over +=over 4 =item NOTE =item DESCRIPTION -=over +=over 4 =item Making References @@ -1465,11 +1466,11 @@ C<(?(condition)yes-pattern|no-pattern)> =head2 perlform - Perl formats -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Format Variables @@ -1477,7 +1478,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item NOTES -=over +=over 4 =item Footers @@ -1491,11 +1492,11 @@ C<(?(condition)yes-pattern|no-pattern)> =head2 perlboot - Beginner's Object-Oriented Tutorial -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item If we could talk to the animals... @@ -1549,13 +1550,13 @@ C<(?(condition)yes-pattern|no-pattern)> =head2 perltoot - Tom's object-oriented tutorial for perl -=over +=over 4 =item DESCRIPTION =item Creating a Class -=over +=over 4 =item Object Representation @@ -1573,7 +1574,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item Class Data -=over +=over 4 =item Accessing Class Data @@ -1589,7 +1590,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item Inheritance -=over +=over 4 =item Overridden Methods @@ -1601,7 +1602,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item Alternate Object Representations -=over +=over 4 =item Arrays as Objects @@ -1611,7 +1612,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item AUTOLOAD: Proxy Methods -=over +=over 4 =item Autoloaded Data Methods @@ -1621,14 +1622,18 @@ C<(?(condition)yes-pattern|no-pattern)> =item Metaclassical Tools -=over +=over 4 =item Class::Struct =item Data Members as Variables +=back + =item NOTES +=over 4 + =item Object Terminology =back @@ -1639,7 +1644,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item COPYRIGHT -=over +=over 4 =item Acknowledgments @@ -1649,13 +1654,13 @@ C<(?(condition)yes-pattern|no-pattern)> =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 @@ -1673,7 +1678,7 @@ C<(?(condition)yes-pattern|no-pattern)> =item Class Data as Lexical Variables -=over +=over 4 =item Privacy and Responsibility @@ -1701,11 +1706,11 @@ C<(?(condition)yes-pattern|no-pattern)> =head2 perlobj - Perl objects -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item An Object is Simply a Reference @@ -1735,7 +1740,7 @@ isa(CLASS), can(METHOD), VERSION( [NEED] ) =head2 perlbot - Bag'o Object Tricks (the BOT) -=over +=over 4 =item DESCRIPTION @@ -1765,13 +1770,13 @@ isa(CLASS), can(METHOD), VERSION( [NEED] ) =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 @@ -1812,7 +1817,7 @@ DESTROY this =head2 perlipc - Perl interprocess communication (signals, fifos, pipes, safe subprocesses, sockets, and semaphores) -=over +=over 4 =item DESCRIPTION @@ -1820,7 +1825,7 @@ safe subprocesses, sockets, and semaphores) =item Named Pipes -=over +=over 4 =item WARNING @@ -1828,7 +1833,7 @@ safe subprocesses, sockets, and semaphores) =item Using open() for IPC -=over +=over 4 =item Filehandles @@ -1846,7 +1851,7 @@ safe subprocesses, sockets, and semaphores) =item Sockets: Client/Server Communication -=over +=over 4 =item Internet Line Terminators @@ -1858,7 +1863,7 @@ safe subprocesses, sockets, and semaphores) =item TCP Clients with IO::Socket -=over +=over 4 =item A Simple Client @@ -1890,13 +1895,13 @@ Proto, LocalPort, Listen, Reuse =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 @@ -1928,7 +1933,7 @@ application, Thread-safety of extensions =head2 perlnumber - semantics of numbers and numeric operations in Perl -=over +=over 4 =item SYNOPSIS @@ -1953,7 +1958,7 @@ string =head2 perlthrtut - tutorial on threads in Perl -=over +=over 4 =item DESCRIPTION @@ -1961,7 +1966,7 @@ string =item Threaded Program Models -=over +=over 4 =item Boss/Worker @@ -1979,7 +1984,7 @@ string =item Thread Basics -=over +=over 4 =item Basic Thread Support @@ -1997,7 +2002,7 @@ string =item Threads And Data -=over +=over 4 =item Shared And Unshared Data @@ -2013,7 +2018,7 @@ string =item Threads And Code -=over +=over 4 =item Semaphores: Synchronizing Data Access @@ -2031,7 +2036,7 @@ Basic semaphores, Advanced Semaphores =item General Thread Utility Routines -=over +=over 4 =item What Thread Am I In? @@ -2049,7 +2054,7 @@ Basic semaphores, Advanced Semaphores =item Bibliography -=over +=over 4 =item Introductory Texts @@ -2069,7 +2074,7 @@ Basic semaphores, Advanced Semaphores =head2 perlport - Writing portable Perl -=over +=over 4 =item DESCRIPTION @@ -2078,7 +2083,7 @@ portable =item ISSUES -=over +=over 4 =item Newlines @@ -2115,7 +2120,7 @@ http://testers.cpan.org/ =item PLATFORMS -=over +=over 4 =item Unix @@ -2139,7 +2144,7 @@ Build instructions for OS/2, L =item FUNCTION IMPLEMENTATIONS -=over +=over 4 =item Alphabetical Listing of Perl Functions @@ -2193,7 +2198,7 @@ v1.23, 10 July 1998 =head2 perllocale - Perl locale handling (internationalization and localization) -=over +=over 4 =item DESCRIPTION @@ -2201,7 +2206,7 @@ localization) =item USING LOCALES -=over +=over 4 =item The use locale pragma @@ -2225,7 +2230,7 @@ localization) =item LOCALE CATEGORIES -=over +=over 4 =item Category LC_COLLATE: Collation @@ -2259,7 +2264,7 @@ LC_NUMERIC, LC_TIME, LANG =item NOTES -=over +=over 4 =item Backward compatibility @@ -2279,7 +2284,7 @@ LC_NUMERIC, LC_TIME, LANG =item BUGS -=over +=over 4 =item Broken systems @@ -2293,11 +2298,11 @@ LC_NUMERIC, LC_TIME, LANG =head2 perlunicode - Unicode support in Perl -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Important Caveat @@ -2320,13 +2325,13 @@ to enable a few features =head2 perlebcdic - Considerations for running Perl on EBCDIC platforms -=over +=over 4 =item DESCRIPTION =item COMMON CHARACTER CODE SETS -=over +=over 4 =item ASCII @@ -2354,7 +2359,7 @@ recipe 0, recipe 1, recipe 2, recipe 3, recipe 4 =item CONVERSIONS -=over +=over 4 =item tr/// @@ -2376,7 +2381,7 @@ chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack() =item SORTING -=over +=over 4 =item Ignore ASCII vs. EBCDIC sort differences. @@ -2390,7 +2395,7 @@ chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack() =item TRANFORMATION FORMATS -=over +=over 4 =item URL decoding and encoding @@ -2410,7 +2415,7 @@ chr(), ord(), pack(), print(), printf(), sort(), sprintf(), unpack() =item OS ISSUES -=over +=over 4 =item OS/400 @@ -2438,11 +2443,11 @@ chcp, dataset access, OS/390 iconv, locales =head2 perlsec - Perl security -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Laundering and Detecting Tainted Data @@ -2462,11 +2467,11 @@ chcp, dataset access, OS/390 iconv, locales =head2 perlmod - Perl modules (packages and symbol tables) -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Packages @@ -2486,47 +2491,48 @@ chcp, dataset access, OS/390 iconv, locales =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 @@ -2553,7 +2559,7 @@ North America, South America =item Modules: Creation, Use, and Abuse -=over +=over 4 =item Guidelines for Module Creation @@ -2592,11 +2598,11 @@ can then be reduced to a small =head2 perlmodinstall - Installing CPAN Modules -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item PREAMBLE @@ -2617,11 +2623,11 @@ module (sometimes unnecessary), B the module =head2 perlnewmod - preparing a new module for distribution -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Warning @@ -2653,11 +2659,11 @@ tarball, Announce to the modules list, Announce to clpa, Fix bugs! =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? @@ -2688,8 +2694,8 @@ Scheme, or Tcl? =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 @@ -2700,11 +2706,11 @@ Scheme, or Tcl? =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? @@ -2756,11 +2762,11 @@ References, Tutorials, Task-Oriented, Special Topics =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)? @@ -2821,7 +2827,7 @@ References, Tutorials, Task-Oriented, Special Topics =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? @@ -2837,13 +2843,13 @@ 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)? @@ -2869,7 +2875,7 @@ Trig functions? =item Data: Dates -=over +=over 4 =item How do I find the week-of-the-year/day-of-the-year? @@ -2889,7 +2895,7 @@ Trig functions? =item Data: Strings -=over +=over 4 =item How do I validate input? @@ -2941,7 +2947,7 @@ the tag =item Data: Arrays -=over +=over 4 =item What is the difference between a list and an array? @@ -2986,7 +2992,7 @@ intersection of two arrays? =item Data: Hashes (Associative Arrays) -=over +=over 4 =item How do I process an entire hash? @@ -3025,7 +3031,7 @@ array of hashes or arrays? =item Data: Misc -=over +=over 4 =item How do I handle binary data correctly? @@ -3050,11 +3056,11 @@ array of hashes or arrays? =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? @@ -3139,11 +3145,11 @@ protected files? Isn't this a bug in Perl? =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? @@ -3157,7 +3163,7 @@ different lines? =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? @@ -3206,11 +3212,11 @@ file? =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? @@ -3285,11 +3291,11 @@ is in scope? =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? @@ -3333,7 +3339,7 @@ STDIN, STDOUT, and STDERR are shared, Signals, Zombies =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? @@ -3413,13 +3419,13 @@ search path? =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? @@ -3478,11 +3484,11 @@ CGI script to do bad things? =head2 perlcompile - Introduction to the Perl Compiler-Translator -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Layout @@ -3492,7 +3498,7 @@ B::Bytecode, B::C, B::CC, B::Lint, B::Deparse, B::Xref =item Using The Back Ends -=over +=over 4 =item The Cross Referencing Back End @@ -3522,11 +3528,11 @@ B::Stash, B::Terse, B::Xref =head2 perlembed - how to embed perl in your C program -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item PREAMBLE @@ -3535,6 +3541,14 @@ Perl?>, B, B =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 @@ -3556,7 +3570,7 @@ program =back -=item Embedding Perl under Windows +=item Embedding Perl under Win32 =item MORAL @@ -3568,13 +3582,13 @@ program =head2 perldebguts - Guts of Perl debugging -=over +=over 4 =item DESCRIPTION =item Debugger Internals -=over +=over 4 =item Writing Your Own Debugger @@ -3584,7 +3598,7 @@ program =item Debugging regular expressions -=over +=over 4 =item Compile-time output @@ -3601,7 +3615,7 @@ C =item Debugging Perl memory usage -=over +=over 4 =item Using C<$ENV{PERL_DEBUG_MSTATS}> @@ -3627,13 +3641,13 @@ C, C, C =head2 perlxstut, perlXStut - Tutorial for writing XSUBs -=over +=over 4 =item DESCRIPTION =item SPECIAL NOTES -=over +=over 4 =item make @@ -3645,7 +3659,7 @@ C, C, C =item TUTORIAL -=over +=over 4 =item EXAMPLE 1 @@ -3707,7 +3721,7 @@ C, C, C =item Author -=over +=over 4 =item Last Changed @@ -3717,11 +3731,11 @@ C, C, C =head2 perlxs - XS language reference manual -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item Introduction @@ -3817,13 +3831,13 @@ C, C, C =head2 perlguts - Introduction to the Perl API -=over +=over 4 =item DESCRIPTION =item Variables -=over +=over 4 =item Datatypes @@ -3879,7 +3893,7 @@ C =item Subroutines -=over +=over 4 =item XSUBs and the Argument Stack @@ -3899,7 +3913,7 @@ C =item Compiled code -=over +=over 4 =item Code tree @@ -3917,7 +3931,7 @@ C =item How multiple interpreters and concurrency are supported -=over +=over 4 =item Background and PERL_IMPLICIT_CONTEXT @@ -3931,7 +3945,7 @@ C A, p, d, s, n, r, f, m, o, j, x -=over +=over 4 =item Formatted Printing of IVs, UVs, and NVs @@ -3943,7 +3957,7 @@ A, p, d, s, n, r, f, m, o, j, x =item Unicode Support -=over +=over 4 =item What B Unicode, anyway? @@ -3967,7 +3981,7 @@ A, p, d, s, n, r, f, m, o, j, x =head2 perlcall - Perl calling conventions from C -=over +=over 4 =item DESCRIPTION @@ -3979,7 +3993,7 @@ call_sv, call_pv, call_method, call_argv =item FLAG VALUES -=over +=over 4 =item G_VOID @@ -4003,7 +4017,7 @@ call_sv, call_pv, call_method, call_argv =item EXAMPLES -=over +=over 4 =item No Parameters, Nothing returned @@ -4053,11 +4067,11 @@ callback =head2 perlutil - utilities packaged with the Perl distribution -=over +=over 4 =item DESCRIPTION -=over +=over 4 =item DOCUMENTATION @@ -4083,7 +4097,7 @@ L, L, L =head2 perlfilter - Source Filters -=over +=over 4 =item DESCRIPTION @@ -4115,7 +4129,7 @@ B =head2 perldbmfilter - Perl DBM Filters -=over +=over 4 =item SYNOPSIS @@ -4124,7 +4138,7 @@ B B, B, B, B -=over +=over 4 =item The Filter @@ -4142,7 +4156,7 @@ B =head2 perlapi - autogenerated documentation for the perl public API -=over +=over 4 =item DESCRIPTION @@ -4176,7 +4190,7 @@ SvNOK_off, SvNOK_on, SvNOK_only, SvNV, SvNVX, SvOK, SvOOK, SvPOK, SvPOKp, 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, @@ -4191,10 +4205,10 @@ sv_setref_pvn, sv_setsv, sv_setsv_mg, sv_setuv, sv_setuv_mg, sv_true, 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 @@ -4205,7 +4219,7 @@ XST_mUNDEF, XST_mYES, XS_VERSION, XS_VERSION_BOOTCHECK, Zero =head2 perlintern - autogenerated documentation of purely B Perl functions -=over +=over 4 =item DESCRIPTION @@ -4219,7 +4233,7 @@ is_gv_magical =head2 perlapio - perl's IO abstraction interface. -=over +=over 4 =item SYNOPSIS @@ -4236,7 +4250,7 @@ B, B, B, B, B, B, B, B -=over +=over 4 =item Co-existence with stdio @@ -4253,13 +4267,13 @@ B, B =head2 perltodo - Perl TO-DO List -=over +=over 4 =item DESCRIPTION =item Infrastructure -=over +=over 4 =item Mailing list archives @@ -4274,7 +4288,7 @@ perl5 =item Configure -=over +=over 4 =item Install HTML @@ -4282,9 +4296,7 @@ perl5 =item Perl Language -=over - -=item our ($var) +=over 4 =item 64-bit Perl @@ -4296,7 +4308,7 @@ Named prototypes, Indirect objects, Method calls, Context, Scoped subs =item Perl Internals -=over +=over 4 =item magic_setisa @@ -4325,7 +4337,7 @@ sighandler, Add tests for Thread::Signal, Automatic tests against CPAN =item Documentation -=over +=over 4 =item A clear division into tutorial and reference @@ -4357,7 +4369,7 @@ Regular expressions, I/O, pack/unpack, Debugging =item Modules -=over +=over 4 =item Update the POSIX extension to conform with the POSIX 1003.1 Edition 2 @@ -4395,8 +4407,6 @@ VecArray, SubstrArray, VirtualArray, ShiftSplice =item Update semibroken auxiliary tools; h2ph, a2p, etc. -=item POD Converters - =item pod2html =item Podchecker @@ -4405,7 +4415,7 @@ VecArray, SubstrArray, VirtualArray, ShiftSplice =item Tom's Wishes -=over +=over 4 =item Webperl @@ -4419,7 +4429,7 @@ VecArray, SubstrArray, VirtualArray, ShiftSplice =item Win32 Stuff -=over +=over 4 =item Rename new headers to be consistent with the rest @@ -4441,7 +4451,7 @@ debugger, lvalue functions =item Possible pragmas -=over +=over 4 =item 'less' @@ -4449,7 +4459,7 @@ debugger, lvalue functions =item Optimizations -=over +=over 4 =item constant function cache @@ -4479,7 +4489,7 @@ threaded code, structured types, Modifiable $1 et al =item To Do Or Not To Do -=over +=over 4 =item Making my() work on "package" variables @@ -4493,7 +4503,7 @@ threaded code, structured types, Modifiable $1 et al =item Threading -=over +=over 4 =item Modules @@ -4515,7 +4525,7 @@ threaded code, structured types, Modifiable $1 et al =item Compiler -=over +=over 4 =item Optimization @@ -4541,7 +4551,7 @@ threaded code, structured types, Modifiable $1 et al =item Recently Finished Tasks -=over +=over 4 =item Figure a way out of $^(capital letter) @@ -4563,7 +4573,7 @@ threaded code, structured types, Modifiable $1 et al =head2 perlhack - How to hack at the Perl internals -=over +=over 4 =item DESCRIPTION @@ -4573,10 +4583,28 @@ the feature generic enough?, Does it potentially introduce new bugs?, Does 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, L and -L, L, F, 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, L and L, L, +F, The perl5-porters FAQ =item Finding Your Way Around @@ -4601,7 +4629,7 @@ Argument stack, Mark stack, Save stack =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 @@ -4611,7 +4639,7 @@ finish, print =item EXTERNAL TOOLS FOR DEBUGGING PERL -=over +=over 4 =item Rational Software's Purify @@ -4635,7 +4663,7 @@ I =head2 perlhist - the Perl history records -=over +=over 4 =item DESCRIPTION @@ -4643,7 +4671,7 @@ I =item THE KEEPERS OF THE PUMPKIN -=over +=over 4 =item PUMPKIN? @@ -4651,7 +4679,7 @@ I =item THE RECORDS -=over +=over 4 =item SELECTED RELEASE SIZES @@ -4665,7 +4693,7 @@ I =head2 perldelta - what's new for perl v5.7.0 -=over +=over 4 =item DESCRIPTION @@ -4677,7 +4705,7 @@ I =item Modules and Pragmata -=over +=over 4 =item New Modules @@ -4702,7 +4730,7 @@ ordered as they were before the sort) =item Installation and Configuration Improvements -=over +=over 4 =item Generic Improvements @@ -4713,7 +4741,7 @@ ordered as they were before the sort) 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 @@ -4725,7 +4753,7 @@ accidentally using the context of the sort() itself) =item Known Problems -=over +=over 4 =item Unicode Support Still Far From Perfect @@ -4759,13 +4787,13 @@ accidentally using the context of the sort() itself) =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 @@ -4881,7 +4909,7 @@ accidentally using the context of the sort() itself) =item Modules and Pragmata -=over +=over 4 =item Modules @@ -4900,7 +4928,7 @@ Term::ANSIColor, Time::Local, Win32, XSLoader, DBM Filters =item Utility Changes -=over +=over 4 =item dprofpp @@ -4925,7 +4953,7 @@ perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod =item Performance enhancements -=over +=over 4 =item Simple sort() using { $a <=> $b } and the like are optimized @@ -4939,7 +4967,7 @@ perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod =item Installation and Configuration Improvements -=over +=over 4 =item -Dusethreads means something different @@ -4965,7 +4993,7 @@ perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod =item Platform specific changes -=over +=over 4 =item Supported platforms @@ -4981,7 +5009,7 @@ perlreftut.pod, perltootc.pod, perltodo.pod, perlunicode.pod =item Significant bug fixes -=over +=over 4 =item on empty files @@ -5072,7 +5100,7 @@ CLI symbol "%s" too long, Version number must be a constant number =item Incompatible Changes -=over +=over 4 =item Perl Source Incompatibilities @@ -5103,7 +5131,7 @@ C is now C =item Known Problems -=over +=over 4 =item Thread test failures @@ -5146,7 +5174,7 @@ to mean "${$}" is deprecated =head2 perl5005delta, perldelta - what's new for perl5.005 -=over +=over 4 =item DESCRIPTION @@ -5154,7 +5182,7 @@ to mean "${$}" is deprecated =item Incompatible Changes -=over +=over 4 =item WARNING: This version is not binary compatible with Perl 5.004. @@ -5180,7 +5208,7 @@ compatibility issues =item Core Changes -=over +=over 4 =item Threads @@ -5260,7 +5288,7 @@ improvements, Incompatible changes =item Supported Platforms -=over +=over 4 =item New Platforms @@ -5270,7 +5298,7 @@ improvements, Incompatible changes =item Modules and Pragmata -=over +=over 4 =item New Modules @@ -5326,7 +5354,7 @@ temporary file, regexp too big =head2 perl5004delta, perldelta - what's new for perl5.004 -=over +=over 4 =item DESCRIPTION @@ -5334,11 +5362,11 @@ temporary file, regexp too big =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 @@ -5418,7 +5446,7 @@ LIST, READLINE this, GETC this, DESTROY this =item Support for More Operating Systems -=over +=over 4 =item Win32 @@ -5437,7 +5465,7 @@ constant NAME => VALUE, use locale, use ops, use vmsish =item Modules -=over +=over 4 =item Required Updates @@ -5463,7 +5491,7 @@ constant NAME => VALUE, use locale, use ops, use vmsish =item Utility Changes -=over +=over 4 =item pod2html @@ -5523,11 +5551,11 @@ PERL_SH_DIR too long, Process terminated by SIG%s =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 @@ -5559,17 +5587,17 @@ PERL_SH_DIR too long, Process terminated by SIG%s =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 @@ -5590,7 +5618,7 @@ finally close()d =item Accessing documentation -=over +=over 4 =item Manpages @@ -5604,7 +5632,7 @@ finally close()d =item BUILD -=over +=over 4 =item Prerequisites @@ -5626,13 +5654,13 @@ finally close()d =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) @@ -5644,7 +5672,7 @@ C, I, Permissions =item CONFIGURE -=over +=over 4 =item Strip Binaries @@ -5667,7 +5695,7 @@ Compiler/Preprocessor defines =item MAKE -=over +=over 4 =item Warnings @@ -5677,7 +5705,7 @@ Compiler/Preprocessor defines =item TEST -=over +=over 4 =item File Permissions @@ -5710,39 +5738,9 @@ Source, Compiled Module Source, Perl Modules/Scripts =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 @@ -5752,7 +5750,7 @@ DJGPP, Pthreads =item USING PERL ON EPOC -=over +=over 4 =item IO Redirection @@ -5779,11 +5777,11 @@ DJGPP, Pthreads =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 @@ -5824,11 +5822,11 @@ DJGPP, Pthreads =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 @@ -5848,13 +5846,17 @@ op/lexassign.t, pragma/warnings.t =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 @@ -5870,11 +5872,9 @@ EMX, RSX, HPFS, pdksh =back -=over - =item Frequently asked questions -=over +=over 4 =item I cannot run external programs @@ -5892,7 +5892,7 @@ L? =item INSTALLATION -=over +=over 4 =item Automatic binary installation @@ -5912,7 +5912,7 @@ Perl manual in F<.INF> format, Pdksh =item Accessing documentation -=over +=over 4 =item OS/2 F<.INF> file @@ -5932,7 +5932,7 @@ Perl manual in F<.INF> format, Pdksh =item BUILD -=over +=over 4 =item Prerequisites @@ -5957,7 +5957,7 @@ F, F, F, F =item Build FAQ -=over +=over 4 =item Some C became C<\> in pdksh. @@ -5977,7 +5977,7 @@ F, F, F, F =item Specific (mis)features of OS/2 port -=over +=over 4 =item C, C @@ -6006,7 +6006,7 @@ C, C, C, C, C, C =item Perl flavors -=over +=over 4 =item F @@ -6028,7 +6028,7 @@ explicit fork(), open FH, "|-", open FH, "-|" =item ENVIRONMENT -=over +=over 4 =item C @@ -6046,7 +6046,7 @@ explicit fork(), open FH, "|-", open FH, "-|" =item Evolution -=over +=over 4 =item Priorities @@ -6066,7 +6066,7 @@ C, F =back -=over +=over 4 =item AUTHOR @@ -6076,13 +6076,13 @@ C, F =head2 perlos390, README.os390 - building and installing Perl for OS/390. -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Unpacking @@ -6102,7 +6102,7 @@ C, F =item SEE ALSO -=over +=over 4 =item Mailing list @@ -6115,13 +6115,13 @@ C, F =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 @@ -6143,7 +6143,7 @@ BS2000 POSIX. =item SEE ALSO -=over +=over 4 =item Mailing list @@ -6153,9 +6153,91 @@ BS2000 POSIX. =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 @@ -6163,7 +6245,7 @@ BS2000 POSIX. =item Organization of Perl Images -=over +=over 4 =item Core Images @@ -6177,7 +6259,7 @@ BS2000 POSIX. =item File specifications -=over +=over 4 =item Syntax @@ -6191,7 +6273,7 @@ BS2000 POSIX. =item Command line -=over +=over 4 =item I/O redirection and backgrounding @@ -6214,7 +6296,7 @@ LIST, waitpid PID,FLAGS =item Standard modules with VMS-specific differences -=over +=over 4 =item SDBM_File @@ -6228,11 +6310,11 @@ LIST, waitpid PID,FLAGS =head2 perlvos, README.vos - Perl for Stratus VOS -=over +=over 4 =item SYNOPSIS -=over +=over 4 =item Stratus POSIX Support @@ -6240,7 +6322,7 @@ LIST, waitpid PID,FLAGS =item INSTALLING PERL IN VOS -=over +=over 4 =item Compiling Perl 5 on VOS @@ -6250,7 +6332,7 @@ LIST, waitpid PID,FLAGS =item USING PERL IN VOS -=over +=over 4 =item Unimplemented Features @@ -6266,49 +6348,11 @@ LIST, waitpid PID,FLAGS =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 @@ -6320,7 +6364,7 @@ method, locked =head2 re - Perl pragma to alter regular expression behaviour -=over +=over 4 =item SYNOPSIS @@ -6330,13 +6374,13 @@ method, locked =head2 attributes - get/set subroutine or variable attributes -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Built-in Attributes @@ -6356,7 +6400,7 @@ FETCH_I_ATTRIBUTES, MODIFY_I_ATTRIBUTES =item EXPORTS -=over +=over 4 =item Default exports @@ -6374,7 +6418,7 @@ FETCH_I_ATTRIBUTES, MODIFY_I_ATTRIBUTES =head2 attrs - set/get attributes of a subroutine (deprecated) -=over +=over 4 =item SYNOPSIS @@ -6386,7 +6430,7 @@ method, locked =head2 autouse - postpone load of modules until a function is used -=over +=over 4 =item SYNOPSIS @@ -6402,7 +6446,7 @@ method, locked =head2 base - Establish IS-A relationship with base class at compile time -=over +=over 4 =item SYNOPSIS @@ -6416,7 +6460,7 @@ method, locked =head2 blib - Use MakeMaker's uninstalled version of a package -=over +=over 4 =item SYNOPSIS @@ -6431,7 +6475,7 @@ method, locked =head2 bytes - Perl pragma to force byte semantics rather than character semantics -=over +=over 4 =item SYNOPSIS @@ -6444,7 +6488,7 @@ semantics =head2 charnames - define character names for C<\N{named}> string literal escape. -=over +=over 4 =item SYNOPSIS @@ -6458,7 +6502,7 @@ escape. =head2 constant - Perl pragma to declare constants -=over +=over 4 =item SYNOPSIS @@ -6479,13 +6523,13 @@ escape. =head2 diagnostics - Perl compiler pragma to force verbose warning diagnostics -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item The C Pragma @@ -6505,7 +6549,7 @@ diagnostics =head2 fields - compile-time class fields -=over +=over 4 =item SYNOPSIS @@ -6519,13 +6563,13 @@ new, phash =head2 filetest - Perl pragma to control the filetest permission operators -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item subpragma access @@ -6536,7 +6580,7 @@ new, phash =head2 integer - Perl pragma to compute arithmetic in integer instead of double -=over +=over 4 =item SYNOPSIS @@ -6546,7 +6590,7 @@ double =head2 less - perl pragma to request less of something from the compiler -=over +=over 4 =item SYNOPSIS @@ -6556,13 +6600,13 @@ double =head2 lib - manipulate @INC at compile time -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Adding directories to @INC @@ -6581,7 +6625,7 @@ double =head2 locale - Perl pragma to use and avoid POSIX locales for built-in operations -=over +=over 4 =item SYNOPSIS @@ -6591,7 +6635,7 @@ operations =head2 open - perl pragma to set default disciplines for input and output -=over +=over 4 =item SYNOPSIS @@ -6605,7 +6649,7 @@ operations =head2 ops - Perl pragma to restrict unsafe operations when compiling -=over +=over 4 =item SYNOPSIS @@ -6617,13 +6661,13 @@ operations =head2 overload - Package for overloading perl operations -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Declaration of overloaded functions @@ -6652,7 +6696,7 @@ is inherited by derived classes =item SPECIAL SYMBOLS FOR C -=over +=over 4 =item Last Resort @@ -6691,7 +6735,7 @@ integer, float, binary, q, qr =item Cookbook -=over +=over 4 =item Two-face scalars @@ -6714,9 +6758,29 @@ type, `%s' is not a code reference =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 @@ -6726,7 +6790,7 @@ type, `%s' is not a code reference =head2 sigtrap - Perl pragma to enable simple signal handling -=over +=over 4 =item SYNOPSIS @@ -6734,7 +6798,7 @@ type, `%s' is not a code reference =item OPTIONS -=over +=over 4 =item SIGNAL HANDLERS @@ -6756,7 +6820,7 @@ B, B, I, I =head2 strict - Perl pragma to restrict unsafe constructs -=over +=over 4 =item SYNOPSIS @@ -6768,7 +6832,7 @@ C, C, C =head2 subs - Perl pragma to predeclare sub names -=over +=over 4 =item SYNOPSIS @@ -6778,7 +6842,7 @@ C, C, C =head2 utf8 - Perl pragma to enable/disable UTF-8 in source code -=over +=over 4 =item SYNOPSIS @@ -6790,7 +6854,7 @@ C, C, C =head2 vars - Perl pragma to predeclare global variable names (obsolete) -=over +=over 4 =item SYNOPSIS @@ -6800,7 +6864,7 @@ C, C, C =head2 warnings - Perl pragma to control optional warnings -=over +=over 4 =item SYNOPSIS @@ -6820,13 +6884,13 @@ warnings::warnif($object, $message) =head2 AnyDBM_File - provide framework for multiple DBMs -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item DBM Comparisons @@ -6840,13 +6904,13 @@ warnings::warnif($object, $message) =head2 AutoLoader - load subroutines only on demand -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Subroutine Stubs @@ -6870,7 +6934,7 @@ warnings::warnif($object, $message) =head2 AutoSplit - split a package for autoloading -=over +=over 4 =item SYNOPSIS @@ -6878,7 +6942,7 @@ warnings::warnif($object, $message) $keep, $check, $modtime -=over +=over 4 =item Multiple packages @@ -6890,7 +6954,7 @@ $keep, $check, $modtime =head2 B - The Perl Compiler -=over +=over 4 =item SYNOPSIS @@ -6898,7 +6962,7 @@ $keep, $check, $modtime =item OVERVIEW OF CLASSES -=over +=over 4 =item SV-RELATED CLASSES @@ -7023,7 +7087,7 @@ hash(STR), cast_I32(I), minus_c, cstring(STR), class(OBJ), threadsv_names =head2 B::Asmdata - Autogenerated data about Perl ops, used to generate bytecode -=over +=over 4 =item SYNOPSIS @@ -7035,7 +7099,7 @@ bytecode =head2 B::Assembler - Assemble Perl bytecode -=over +=over 4 =item SYNOPSIS @@ -7047,7 +7111,7 @@ bytecode =head2 B::Bblock - Walk basic blocks -=over +=over 4 =item SYNOPSIS @@ -7059,7 +7123,7 @@ bytecode =head2 B::Bytecode - Perl compiler's bytecode backend -=over +=over 4 =item SYNOPSIS @@ -7082,7 +7146,7 @@ output. =back =head2 B::C - Perl compiler's C backend -=over +=over 4 =item SYNOPSIS @@ -7103,7 +7167,7 @@ B<-DC>, B<-DM>, B<-f>, B<-fcog>, B<-fno-cog>, B<-On>, B<-llimit> =head2 B::CC - Perl compiler's optimized C translation backend -=over +=over 4 =item SYNOPSIS @@ -7121,7 +7185,7 @@ B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On> =item DIFFERENCES -=over +=over 4 =item Loops @@ -7139,7 +7203,7 @@ B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On> =head2 B::Debug - Walk Perl syntax tree, printing debug info about ops -=over +=over 4 =item SYNOPSIS @@ -7151,7 +7215,7 @@ B<-ffreetmps-each-bblock>, B<-ffreetmps-each-loop>, B<-fomit-taint>, B<-On> =head2 B::Deparse - Perl compiler backend to produce perl code -=over +=over 4 =item SYNOPSIS @@ -7164,7 +7228,7 @@ B, BIB<.> =item USING B::Deparse AS A MODULE -=over +=over 4 =item Synopsis @@ -7184,7 +7248,7 @@ B, BIB<.> =head2 B::Disassembler - Disassemble Perl bytecode -=over +=over 4 =item SYNOPSIS @@ -7196,7 +7260,7 @@ B, BIB<.> =head2 B::Lint - Perl lint -=over +=over 4 =item SYNOPSIS @@ -7219,7 +7283,7 @@ B<-u Package> =head2 B::O, O - Generic interface to Perl Compiler backends -=over +=over 4 =item SYNOPSIS @@ -7235,7 +7299,7 @@ B<-u Package> =head2 B::Showlex - Show lexical variables used in functions or files -=over +=over 4 =item SYNOPSIS @@ -7247,7 +7311,7 @@ B<-u Package> =head2 B::Stackobj - Helper module for CC backend -=over +=over 4 =item SYNOPSIS @@ -7261,7 +7325,7 @@ B<-u Package> =head2 B::Terse - Walk Perl syntax tree, printing terse info about ops -=over +=over 4 =item SYNOPSIS @@ -7273,7 +7337,7 @@ B<-u Package> =head2 B::Xref - Generates cross reference reports for Perl programs -=over +=over 4 =item SYNOPSIS @@ -7291,7 +7355,7 @@ C<-oFILENAME>, C<-r>, C<-D[tO]> =head2 Bblock, B::Bblock - Walk basic blocks -=over +=over 4 =item SYNOPSIS @@ -7303,13 +7367,13 @@ C<-oFILENAME>, C<-r>, C<-D[tO]> =head2 Benchmark - benchmark running times of Perl code -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Methods @@ -7347,7 +7411,7 @@ STYLE ] ), cmpthese ( RESULTSHASHREF ), countit(TIME, CODE), disablecache ( =head2 ByteLoader - load byte compiled perl code -=over +=over 4 =item SYNOPSIS @@ -7361,7 +7425,7 @@ STYLE ] ), cmpthese ( RESULTSHASHREF ), countit(TIME, CODE), disablecache ( =head2 Bytecode, B::Bytecode - Perl compiler's bytecode backend -=over +=over 4 =item SYNOPSIS @@ -7384,7 +7448,7 @@ output. =back =head2 CGI - Simple Common Gateway Interface Class -=over +=over 4 =item SYNOPSIS @@ -7392,7 +7456,7 @@ output. =back =item DESCRIPTION -=over +=over 4 =item PROGRAMMING STYLE @@ -7450,7 +7514,7 @@ a tag) =item GENERATING DYNAMIC DOCUMENTS -=over +=over 4 =item CREATING A STANDARD HTTP HEADER: @@ -7475,7 +7539,7 @@ B<-absolute>, B<-relative>, B<-full>, B<-path> (B<-path_info>), B<-query> =item CREATING STANDARD HTML ELEMENTS: -=over +=over 4 =item PROVIDING ARGUMENTS TO HTML SHORTCUTS @@ -7496,7 +7560,7 @@ charset([$charset]);, $flag = autoEscape([$flag]); =item CREATING FILL-OUT FORMS: -=over +=over 4 =item CREATING AN ISINDEX TAG @@ -7570,7 +7634,7 @@ the
tag =item DEBUGGING -=over +=over 4 =item DUMPING OUT ALL THE NAME/VALUE PAIRS @@ -7628,7 +7692,7 @@ MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org), =head2 CGI::Apache - Backward compatibility module for CGI.pm -=over +=over 4 =item SYNOPSIS @@ -7647,7 +7711,7 @@ MacEachern (dougm@opengroup.org), Robin Houston (robin@oneworld.org), =head2 CGI::Carp, B - CGI routines for writing to the HTTPD (or other) error log -=over +=over 4 =item SYNOPSIS @@ -7657,7 +7721,7 @@ other) error log =item MAKING PERL ERRORS APPEAR IN THE BROWSER WINDOW -=over +=over 4 =item Changing the default message @@ -7675,7 +7739,7 @@ other) error log =head2 CGI::Cookie - Interface to Netscape Cookies -=over +=over 4 =item SYNOPSIS @@ -7685,7 +7749,7 @@ other) error log B<1. expiration date>, B<2. domain>, B<3. path>, B<4. secure flag> -=over +=over 4 =item Creating New Cookies @@ -7709,7 +7773,7 @@ B, B, B, B, B =head2 CGI::Fast - CGI Interface for Fast CGI -=over +=over 4 =item SYNOPSIS @@ -7735,13 +7799,13 @@ B, B, B, B, B =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 @@ -7759,7 +7823,7 @@ B, B, B, B, B =head2 CGI::Push - Simple Interface to Server Push -=over +=over 4 =item SYNOPSIS @@ -7769,7 +7833,7 @@ B, B, B, B, B -next_page, -last_page, -type, -delay, -cookie, -target, -expires -=over +=over 4 =item Heterogeneous Pages @@ -7789,7 +7853,7 @@ B, B, B, B, B =head2 CGI::Switch - Backward compatibility module for defunct CGI::Switch -=over +=over 4 =item SYNOPSIS @@ -7807,13 +7871,13 @@ B, B, B, B, B =head2 CPAN - query, download and build perl modules from CPAN sites -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Interactive Mode @@ -7856,7 +7920,7 @@ EvalueE>, Clist optionE>, Clist optionE [shift|pop]>, Clist optionE [unshift|push|splice] ElistE> -=over +=over 4 =item Note on urllist parameter's format @@ -7872,7 +7936,7 @@ optionE [shift|pop]>, Clist optionE =item WORKING WITH CPAN.pm BEHIND FIREWALLS -=over +=over 4 =item Three basic types of firewalls @@ -7886,14 +7950,18 @@ http firewall, ftp firewall, One way visibility, SOCKS, IP Masquerade 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 @@ -7905,7 +7973,7 @@ CPAN.pm but without uploading the modules to CPAN? =head2 CPAN::FirstTime - Utility for CPAN::Config file Initialization -=over +=over 4 =item SYNOPSIS @@ -7916,7 +7984,7 @@ CPAN.pm but without uploading the modules to CPAN? =head2 CPANox, CPAN::Nox - Wrapper around CPAN.pm without using any XS module -=over +=over 4 =item SYNOPSIS @@ -7928,13 +7996,13 @@ module =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 @@ -7946,7 +8014,7 @@ module =head2 Carp::Heavy - Carp guts -=over +=over 4 =item SYNOPIS @@ -7956,16 +8024,18 @@ module =head2 Class::Struct - declare struct-like datatypes as Perl classes -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item The C function +=item Class Creation at Compile Time + =item Element Types and Accessor Methods Scalar (C<'$'> or C<'*$'>), Array (C<'@'> or C<'*@'>), Hash (C<'%'> or @@ -7985,7 +8055,7 @@ Example 1, Example 2, Example 3 =head2 Config - access Perl configuration information -=over +=over 4 =item SYNOPSIS @@ -7999,7 +8069,7 @@ myconfig(), config_sh(), config_vars(@names) =item GLOSSARY -=over +=over 4 =item _ @@ -8040,16 +8110,16 @@ C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, -C, C, C, C, C, -C, C, C, C, C, -C, C, C, C, C, -C, C, C, C, C, -C, C, C, C, -C, C, C, C, -C, C, C, C, -C, C, C, C, -C, C, C, C, -C, C, C, C, +C, C, C, C, +C, C, C, C, C, +C, C, C, C, C, +C, C, C, C, C, +C, C, C, C, C, +C, C, C, C, +C, C, C, C, +C, C, C, C, +C, C, C, C, +C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, C, @@ -8257,7 +8327,7 @@ C, C =head2 Cwd, getcwd - get pathname of current working directory -=over +=over 4 =item SYNOPSIS @@ -8269,13 +8339,13 @@ C, C subject to change) -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Global Variables @@ -8304,7 +8374,7 @@ CLIENT->output(LIST) =head2 DB_File - Perl5 access to Berkeley DB version 1.x -=over +=over 4 =item SYNOPSIS @@ -8312,7 +8382,7 @@ CLIENT->output(LIST) B, B, B -=over +=over 4 =item Using DB_File with Berkeley DB version 2 or 3 @@ -8328,7 +8398,7 @@ B, B, B =item DB_HASH -=over +=over 4 =item A Simple Example @@ -8336,7 +8406,7 @@ B, B, B =item DB_BTREE -=over +=over 4 =item Changing the BTREE sort order @@ -8354,7 +8424,7 @@ B, B, B =item DB_RECNO -=over +=over 4 =item The 'bval' Option @@ -8381,7 +8451,7 @@ $value, $flags) ;>, B<$status = $X-Esync([$flags]) ;> B, B, B, B -=over +=over 4 =item The Filter @@ -8393,7 +8463,7 @@ B =item HINTS AND TIPS -=over +=over 4 =item Locking: The Trouble with fd @@ -8409,7 +8479,7 @@ B, B, B =item COMMON QUESTIONS -=over +=over 4 =item Why is there Perl source in my database? @@ -8440,13 +8510,13 @@ B, B, B =head2 Data::Dumper - stringified perl data structures, suitable for both printing and C -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Methods @@ -8494,7 +8564,7 @@ Dumper =head2 Devel::DProf - a Perl code profiler -=over +=over 4 =item SYNOPSIS @@ -8514,13 +8584,13 @@ Dumper =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 @@ -8528,7 +8598,7 @@ Dumper =item EXAMPLES -=over +=over 4 =item A simple scalar string @@ -8562,7 +8632,7 @@ Dumper =head2 Devel::SelfStubber - generate stubs for a SelfLoading module -=over +=over 4 =item SYNOPSIS @@ -8572,7 +8642,7 @@ Dumper =head2 DirHandle - supply object methods for directory handles -=over +=over 4 =item SYNOPSIS @@ -8582,13 +8652,13 @@ Dumper =head2 Dumpvalue - provides screen dump of Perl data. -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Creation @@ -8608,7 +8678,7 @@ veryCompact, set, get =head2 DynaLoader - Dynamically load C libraries into Perl code -=over +=over 4 =item SYNOPSIS @@ -8627,7 +8697,7 @@ bootstrap() =head2 DynaLoader::XSLoader, XSLoader - Dynamically load C libraries into Perl code -=over +=over 4 =item SYNOPSIS @@ -8639,7 +8709,7 @@ Perl code =head2 Encode - character encodings -=over +=over 4 =item TERMINOLOGY @@ -8662,7 +8732,7 @@ Perl code =head2 English - use nice English (or awk) names for ugly punctuation variables -=over +=over 4 =item SYNOPSIS @@ -8675,7 +8745,7 @@ variables =head2 Env - perl module that imports environment variables as scalars or arrays -=over +=over 4 =item SYNOPSIS @@ -8689,7 +8759,7 @@ arrays =head2 Errno - System errno constants -=over +=over 4 =item SYNOPSIS @@ -8705,13 +8775,13 @@ arrays =head2 Exporter - Implements default import method for modules -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item How to Export @@ -8733,7 +8803,7 @@ arrays =head2 Exporter::Heavy - Exporter guts -=over +=over 4 =item SYNOPIS @@ -8744,7 +8814,7 @@ arrays =head2 ExtUtils::Command - utilities to replace common UNIX commands in Makefiles etc. -=over +=over 4 =item SYNOPSIS @@ -8772,7 +8842,7 @@ mkpath directory.. test_f file -=over +=over 4 =item BUGS @@ -8784,7 +8854,7 @@ test_f file =head2 ExtUtils::Embed - Utilities for embedding Perl in C/C++ applications -=over +=over 4 =item SYNOPSIS @@ -8807,7 +8877,7 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules) =head2 ExtUtils::Install - install files from here to there -=over +=over 4 =item SYNOPSIS @@ -8817,7 +8887,7 @@ ccopts(), xsi_header(), xsi_protos(@modules), xsi_body(@modules) =head2 ExtUtils::Installed - Inventory management of installed modules -=over +=over 4 =item SYNOPSIS @@ -8838,7 +8908,7 @@ packlist(), version() =head2 ExtUtils::Liblist - determine libraries to use and how to use them -=over +=over 4 =item SYNOPSIS @@ -8846,7 +8916,7 @@ packlist(), version() For static extensions, For dynamic extensions, For dynamic extensions -=over +=over 4 =item EXTRALIBS @@ -8858,7 +8928,7 @@ For static extensions, For dynamic extensions, For dynamic extensions =item PORTABILITY -=over +=over 4 =item VMS implementation @@ -8873,7 +8943,7 @@ For static extensions, For dynamic extensions, For dynamic extensions =head2 ExtUtils::MM_Cygwin - methods to override UN*X behaviour in ExtUtils::MakeMaker -=over +=over 4 =item SYNOPSIS @@ -8886,7 +8956,7 @@ canonpath, cflags, manifypods, perl_archive =head2 ExtUtils::MM_OS2 - methods to override UN*X behaviour in ExtUtils::MakeMaker -=over +=over 4 =item SYNOPSIS @@ -8896,7 +8966,7 @@ ExtUtils::MakeMaker =head2 ExtUtils::MM_Unix - methods used by ExtUtils::MakeMaker -=over +=over 4 =item SYNOPSIS @@ -8904,7 +8974,7 @@ ExtUtils::MakeMaker =item METHODS -=over +=over 4 =item Preloaded methods @@ -8924,7 +8994,7 @@ rootdir updir -=over +=over 4 =item SelfLoaded methods @@ -8976,7 +9046,7 @@ file_name_is_absolute find_perl -=over +=over 4 =item Methods to actually produce chunks of text for the Makefile @@ -9094,7 +9164,7 @@ perl_archive export_list -=over +=over 4 =item SEE ALSO @@ -9103,13 +9173,13 @@ export_list =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 @@ -9121,7 +9191,7 @@ wraplist rootdir (override) -=over +=over 4 =item SelfLoaded methods @@ -9218,7 +9288,7 @@ nicetext (override) =head2 ExtUtils::MM_Win32 - methods to override UN*X behaviour in ExtUtils::MakeMaker -=over +=over 4 =item SYNOPSIS @@ -9264,13 +9334,13 @@ pasthru (o) =head2 ExtUtils::MakeMaker - create an extension Makefile -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item How To Write A Makefile.PL @@ -9341,7 +9411,7 @@ PERL_MM_OPT =head2 ExtUtils::Manifest - utilities to write and check a MANIFEST file -=over +=over 4 =item SYNOPSIS @@ -9366,7 +9436,7 @@ C I =head2 ExtUtils::Miniperl, writemain - write the C code for perlmain.c -=over +=over 4 =item SYNOPSIS @@ -9378,7 +9448,7 @@ C I =head2 ExtUtils::Mkbootstrap - make a bootstrap file for use by DynaLoader -=over +=over 4 =item SYNOPSIS @@ -9389,7 +9459,7 @@ C I =head2 ExtUtils::Mksymlists - write linker options files for dynamic extension -=over +=over 4 =item SYNOPSIS @@ -9405,7 +9475,7 @@ DLBASE, DL_FUNCS, DL_VARS, FILE, FUNCLIST, IMPORTS, NAME =head2 ExtUtils::Packlist - manage .packlist files -=over +=over 4 =item SYNOPSIS @@ -9425,7 +9495,7 @@ new(), read(), write(), validate(), packlist_file() =head2 ExtUtils::testlib - add blib/* directories to @INC -=over +=over 4 =item SYNOPSIS @@ -9435,7 +9505,7 @@ new(), read(), write(), validate(), packlist_file() =head2 Fatal - replace functions with equivalents which succeed or die -=over +=over 4 =item SYNOPSIS @@ -9447,7 +9517,7 @@ new(), read(), write(), validate(), packlist_file() =head2 Fcntl - load the C Fcntl.h defines -=over +=over 4 =item SYNOPSIS @@ -9461,7 +9531,7 @@ new(), read(), write(), validate(), packlist_file() =head2 File::Basename, fileparse - split a pathname into pieces -=over +=over 4 =item SYNOPSIS @@ -9477,7 +9547,7 @@ C, C =head2 File::CheckTree, validate - run many filetest checks on a tree -=over +=over 4 =item SYNOPSIS @@ -9487,7 +9557,7 @@ C, C =head2 File::Compare - Compare files or filehandles -=over +=over 4 =item SYNOPSIS @@ -9501,13 +9571,13 @@ C, C =head2 File::Copy - Copy files or filehandles -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Special behaviour if C is defined (OS/2, VMS and Win32) @@ -9523,7 +9593,7 @@ rmscopy($from,$to[,$date_flag]) =head2 File::DosGlob - DOS like globbing and then some -=over +=over 4 =item SYNOPSIS @@ -9543,7 +9613,7 @@ rmscopy($from,$to[,$date_flag]) =head2 File::Find, find - traverse a file tree -=over +=over 4 =item SYNOPSIS @@ -9559,7 +9629,7 @@ C, C =head2 File::Glob - Perl extension for BSD glob routine -=over +=over 4 =item SYNOPSIS @@ -9580,7 +9650,7 @@ C, C =head2 File::Path - create or remove directory trees -=over +=over 4 =item SYNOPSIS @@ -9592,7 +9662,7 @@ C, C =head2 File::Spec - portably perform operations on file names -=over +=over 4 =item SYNOPSIS @@ -9606,13 +9676,13 @@ C, C =head2 File::Spec::Functions - portably perform operations on file names -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Exports @@ -9624,7 +9694,7 @@ C, C =head2 File::Spec::Mac - File::Spec for MacOS -=over +=over 4 =item SYNOPSIS @@ -9664,7 +9734,7 @@ abs2rel rel2abs -=over +=over 4 =item SEE ALSO @@ -9672,7 +9742,7 @@ rel2abs =head2 File::Spec::OS2 - methods for OS/2 file specs -=over +=over 4 =item SYNOPSIS @@ -9682,7 +9752,7 @@ rel2abs =head2 File::Spec::Unix - methods used by File::Spec -=over +=over 4 =item SYNOPSIS @@ -9728,7 +9798,7 @@ abs2rel rel2abs -=over +=over 4 =item SEE ALSO @@ -9736,7 +9806,7 @@ rel2abs =head2 File::Spec::VMS - methods for VMS file specs -=over +=over 4 =item SYNOPSIS @@ -9748,7 +9818,7 @@ eliminate_macros fixpath -=over +=over 4 =item Methods always loaded @@ -9786,7 +9856,7 @@ abs2rel (override) rel2abs (override) -=over +=over 4 =item SEE ALSO @@ -9794,7 +9864,7 @@ rel2abs (override) =head2 File::Spec::Win32 - methods for Win32 file specs -=over +=over 4 =item SYNOPSIS @@ -9816,7 +9886,7 @@ splitdir catpath -=over +=over 4 =item SEE ALSO @@ -9824,7 +9894,7 @@ catpath =head2 File::Temp - return name and handle of a temporary file safely -=over +=over 4 =item PORTABILITY @@ -9834,7 +9904,7 @@ catpath =back -=over +=over 4 =item FUNCTIONS @@ -9844,7 +9914,7 @@ B B -=over +=over 4 =item MKTEMP FUNCTIONS @@ -9858,7 +9928,7 @@ B B -=over +=over 4 =item POSIX FUNCTIONS @@ -9868,7 +9938,7 @@ B B -=over +=over 4 =item ADDITIONAL FUNCTIONS @@ -9876,7 +9946,7 @@ B =back -=over +=over 4 =item UTILITY FUNCTIONS @@ -9884,7 +9954,7 @@ B =back -=over +=over 4 =item PACKAGE VARIABLES @@ -9894,7 +9964,7 @@ B, STANDARD, MEDIUM, HIGH TopSystemUID -=over +=over 4 =item WARNING @@ -9908,7 +9978,7 @@ TopSystemUID =head2 File::stat - by-name interface to Perl's built-in stat() functions -=over +=over 4 =item SYNOPSIS @@ -9922,7 +9992,7 @@ TopSystemUID =head2 FileCache - keep more files open than the system permits -=over +=over 4 =item SYNOPSIS @@ -9934,7 +10004,7 @@ TopSystemUID =head2 FileHandle - supply object methods for filehandles -=over +=over 4 =item SYNOPSIS @@ -9948,7 +10018,7 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines =head2 FindBin - Locate directory of original perl script -=over +=over 4 =item SYNOPSIS @@ -9966,7 +10036,7 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines =head2 GDBM_File - Perl5 access to the gdbm library. -=over +=over 4 =item SYNOPSIS @@ -9982,7 +10052,7 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines =head2 Getopt::Long - Extended processing of command line options -=over +=over 4 =item SYNOPSIS @@ -9992,7 +10062,7 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines =item Getting Started with Getopt::Long -=over +=over 4 =item Simple options @@ -10020,7 +10090,7 @@ $fh->print, $fh->printf, $fh->getline, $fh->getlines =item Advanced Possibilities -=over +=over 4 =item Object oriented interface @@ -10048,7 +10118,7 @@ prefix_pattern, debug (default: disabled) =item Legacy -=over +=over 4 =item Default destinations @@ -10060,7 +10130,7 @@ prefix_pattern, debug (default: disabled) =item Trouble Shooting -=over +=over 4 =item Warning: Ignoring '!' modifier for short option @@ -10078,7 +10148,7 @@ supplied =head2 Getopt::Std, getopt - Process single-character switches with switch clustering -=over +=over 4 =item SYNOPSIS @@ -10089,7 +10159,7 @@ clustering =head2 I18N::Collate - compare 8-bit scalar data according to the current locale -=over +=over 4 =item SYNOPSIS @@ -10099,7 +10169,7 @@ locale =head2 IO - load various IO modules -=over +=over 4 =item SYNOPSIS @@ -10109,7 +10179,7 @@ locale =head2 IO::Dir - supply object methods for directory handles -=over +=over 4 =item SYNOPSIS @@ -10128,7 +10198,7 @@ rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ] =head2 IO::File - supply object methods for filehandles -=over +=over 4 =item SYNOPSIS @@ -10150,7 +10220,7 @@ open( FILENAME [,MODE [,PERMS]] ) =head2 IO::Handle - supply object methods for I/O handles -=over +=over 4 =item SYNOPSIS @@ -10179,7 +10249,7 @@ $io->blocking ( [ BOOL ] ), $io->untaint =head2 IO::Pipe - supply object methods for pipes -=over +=over 4 =item SYNOPSIS @@ -10203,7 +10273,7 @@ reader ([ARGS]), writer ([ARGS]), handles () =head2 IO::Poll - Object interface to system poll call -=over +=over 4 =item SYNOPSIS @@ -10224,7 +10294,7 @@ IO ), handles( [ EVENT_MASK ] ) =head2 IO::Seekable - supply seek based methods for I/O objects -=over +=over 4 =item SYNOPSIS @@ -10238,7 +10308,7 @@ IO ), handles( [ EVENT_MASK ] ) =head2 IO::Select - OO interface to the select system call -=over +=over 4 =item SYNOPSIS @@ -10264,7 +10334,7 @@ count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] ) =head2 IO::Socket - Object interface to socket communications -=over +=over 4 =item SYNOPSIS @@ -10289,7 +10359,7 @@ sockopt(OPT [, VAL]), sockdomain, socktype, protocol, connected =head2 IO::Socket::INET - Object interface for AF_INET domain sockets -=over +=over 4 =item SYNOPSIS @@ -10299,7 +10369,7 @@ sockopt(OPT [, VAL]), sockdomain, socktype, protocol, connected new ( [ARGS] ) -=over +=over 4 =item METHODS @@ -10318,7 +10388,7 @@ sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost =head2 IO::Socket::UNIX - Object interface for AF_UNIX domain sockets -=over +=over 4 =item SYNOPSIS @@ -10343,7 +10413,7 @@ hostpath(), peerpath() =head2 IO::lib::IO::Dir, IO::Dir - supply object methods for directory handles -=over +=over 4 =item SYNOPSIS @@ -10362,7 +10432,7 @@ rewind (), close (), tie %hash, IO::Dir, DIRNAME [, OPTIONS ] =head2 IO::lib::IO::File, IO::File - supply object methods for filehandles -=over +=over 4 =item SYNOPSIS @@ -10385,7 +10455,7 @@ open( FILENAME [,MODE [,PERMS]] ) =head2 IO::lib::IO::Handle, IO::Handle - supply object methods for I/O handles -=over +=over 4 =item SYNOPSIS @@ -10414,7 +10484,7 @@ $io->blocking ( [ BOOL ] ), $io->untaint =head2 IO::lib::IO::Pipe, IO::Pipe - supply object methods for pipes -=over +=over 4 =item SYNOPSIS @@ -10438,7 +10508,7 @@ reader ([ARGS]), writer ([ARGS]), handles () =head2 IO::lib::IO::Poll, IO::Poll - Object interface to system poll call -=over +=over 4 =item SYNOPSIS @@ -10460,7 +10530,7 @@ IO ), handles( [ EVENT_MASK ] ) =head2 IO::lib::IO::Seekable, IO::Seekable - supply seek based methods for I/O objects -=over +=over 4 =item SYNOPSIS @@ -10475,7 +10545,7 @@ I/O objects =head2 IO::lib::IO::Select, IO::Select - OO interface to the select system call -=over +=over 4 =item SYNOPSIS @@ -10502,7 +10572,7 @@ count (), bits(), select ( READ, WRITE, ERROR [, TIMEOUT ] ) =head2 IO::lib::IO::Socket, IO::Socket - Object interface to socket communications -=over +=over 4 =item SYNOPSIS @@ -10528,7 +10598,7 @@ sockopt(OPT [, VAL]), sockdomain, socktype, protocol, connected =head2 IO::lib::IO::Socket::INET, IO::Socket::INET - Object interface for AF_INET domain sockets -=over +=over 4 =item SYNOPSIS @@ -10538,7 +10608,7 @@ AF_INET domain sockets new ( [ARGS] ) -=over +=over 4 =item METHODS @@ -10558,7 +10628,7 @@ sockaddr (), sockport (), sockhost (), peeraddr (), peerport (), peerhost =head2 IO::lib::IO::Socket::UNIX, IO::Socket::UNIX - Object interface for AF_UNIX domain sockets -=over +=over 4 =item SYNOPSIS @@ -10582,7 +10652,7 @@ hostpath(), peerpath() =head2 IPC::Msg - SysV Msg IPC object class -=over +=over 4 =item SYNOPSIS @@ -10604,7 +10674,7 @@ FLAGS ] ), stat =head2 IPC::Open2, open2 - open a process for both reading and writing -=over +=over 4 =item SYNOPSIS @@ -10619,7 +10689,7 @@ FLAGS ] ), stat =head2 IPC::Open3, open3 - open a process for reading, writing, and error handling -=over +=over 4 =item SYNOPSIS @@ -10631,7 +10701,7 @@ handling =head2 IPC::Semaphore - SysV Semaphore IPC object class -=over +=over 4 =item SYNOPSIS @@ -10654,7 +10724,7 @@ set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N =head2 IPC::SysV - SysV IPC constants -=over +=over 4 =item SYNOPSIS @@ -10672,7 +10742,7 @@ ftok( PATH, ID ) =head2 IPC::SysV::Msg, IPC::Msg - SysV Msg IPC object class -=over +=over 4 =item SYNOPSIS @@ -10695,7 +10765,7 @@ FLAGS ] ), stat =head2 IPC::SysV::Semaphore, IPC::Semaphore - SysV Semaphore IPC object class -=over +=over 4 =item SYNOPSIS @@ -10718,7 +10788,7 @@ set ( NAME => VALUE [, NAME => VALUE ...] ), setall ( VALUES ), setval ( N =head2 Math::BigFloat - Arbitrary length float math package -=over +=over 4 =item SYNOPSIS @@ -10735,7 +10805,7 @@ performed =head2 Math::BigInt - Arbitrary size integer math package -=over +=over 4 =item SYNOPSIS @@ -10756,7 +10826,7 @@ Canonical notation, Input, Output =head2 Math::Complex - complex numbers and associated mathematical functions -=over +=over 4 =item SYNOPSIS @@ -10768,7 +10838,7 @@ functions =item STRINGIFICATION -=over +=over 4 =item CHANGED IN PERL 5.6 @@ -10788,7 +10858,7 @@ functions =head2 Math::Trig - trigonometric functions -=over +=over 4 =item SYNOPSIS @@ -10798,7 +10868,7 @@ functions B -=over +=over 4 =item ERRORS DUE TO DIVISION BY ZERO @@ -10810,7 +10880,7 @@ B =item RADIAL COORDINATE CONVERSIONS -=over +=over 4 =item COORDINATE SYSTEMS @@ -10833,7 +10903,7 @@ cylindrical_to_spherical, spherical_to_cartesian, spherical_to_cylindrical =head2 NDBM_File - Tied access to ndbm files -=over +=over 4 =item SYNOPSIS @@ -10841,7 +10911,7 @@ C, C, C =item DIAGNOSTICS -=over +=over 4 =item C @@ -10853,13 +10923,13 @@ C, C, C =head2 Net::Ping - check a remote host for reachability -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item Functions @@ -10877,7 +10947,7 @@ $timeout]);, $p->close();, pingecho($host [, $timeout]); =head2 Net::hostent - by-name interface to Perl's built-in gethost*() functions -=over +=over 4 =item SYNOPSIS @@ -10894,7 +10964,7 @@ functions =head2 Net::netent - by-name interface to Perl's built-in getnet*() functions -=over +=over 4 =item SYNOPSIS @@ -10911,7 +10981,7 @@ functions =head2 Net::protoent - by-name interface to Perl's built-in getproto*() functions -=over +=over 4 =item SYNOPSIS @@ -10926,7 +10996,7 @@ functions =head2 Net::servent - by-name interface to Perl's built-in getserv*() functions -=over +=over 4 =item SYNOPSIS @@ -10942,7 +11012,7 @@ functions =head2 O - Generic interface to Perl Compiler backends -=over +=over 4 =item SYNOPSIS @@ -10958,7 +11028,7 @@ functions =head2 ODBM_File - Tied access to odbm files -=over +=over 4 =item SYNOPSIS @@ -10966,7 +11036,7 @@ C, C, C =item DIAGNOSTICS -=over +=over 4 =item C @@ -10978,7 +11048,7 @@ C, C, C =head2 Opcode - Disable named opcodes when compiling perl code -=over +=over 4 =item SYNOPSIS @@ -11006,7 +11076,7 @@ opdump (PAT) =back -=over +=over 4 =item Predefined Opcode Tags @@ -11024,7 +11094,7 @@ opdump (PAT) =head2 Opcode::Safe, Safe - Compile and execute code in restricted compartments -=over +=over 4 =item SYNOPSIS @@ -11034,7 +11104,7 @@ a new namespace, an operator mask =item WARNING -=over +=over 4 =item RECENT CHANGES @@ -11058,7 +11128,7 @@ Memory, CPU, Snooping, Signals, State Changes =head2 Opcode::ops, ops - Perl pragma to restrict unsafe operations when compiling -=over +=over 4 =item SYNOPSIS @@ -11070,7 +11140,7 @@ compiling =head2 POSIX - Perl interface to IEEE Std 1003.1 -=over +=over 4 =item SYNOPSIS @@ -11111,7 +11181,7 @@ wctomb, write =item CLASSES -=over +=over 4 =item POSIX::SigAction @@ -11199,13 +11269,13 @@ Constants, Macros =head2 Pod::Checker, podchecker() - check pod documents for syntax errors -=over +=over 4 =item SYNOPSIS =item OPTIONS/ARGUMENTS -=over +=over 4 =item podchecker() @@ -11217,7 +11287,7 @@ B<-warnings> =E I =item DIAGNOSTICS -=over +=over 4 =item Errors @@ -11272,7 +11342,7 @@ C<$checker-Eidx()> C<$checker-Ehyperlink()> -=over +=over 4 =item AUTHOR @@ -11280,7 +11350,7 @@ C<$checker-Ehyperlink()> =head2 Pod::Find - find POD documents in directory trees -=over +=over 4 =item SYNOPSIS @@ -11288,7 +11358,7 @@ C<$checker-Ehyperlink()> =back -=over +=over 4 =item C @@ -11297,13 +11367,13 @@ C<-verbose =E 1>, C<-perl =E 1>, C<-script =E 1>, C<-inc =E =back -=over +=over 4 =item C =back -=over +=over 4 =item C @@ -11312,13 +11382,13 @@ C<-inc =E 1>, C<-dirs =E [ $dir1, $dir2, ... ]>, C<-verbose =E =back -=over +=over 4 =item C =back -=over +=over 4 =item AUTHOR @@ -11328,7 +11398,7 @@ C<-inc =E 1>, C<-dirs =E [ $dir1, $dir2, ... ]>, C<-verbose =E =head2 Pod::Html - module to convert pod files to HTML -=over +=over 4 =item SYNOPSIS @@ -11355,7 +11425,7 @@ verbose =head2 Pod::InputObjects - objects representing POD input paragraphs, commands, etc. -=over +=over 4 =item SYNOPSIS @@ -11370,211 +11440,211 @@ B, package B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item Pod::Paragraph-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item $pod_para-EB =back -=over +=over 4 =item B =back -=over +=over 4 =item Pod::InteriorSequence-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item $pod_seq-EB =back -=over +=over 4 =item Pod::InteriorSequence::B =back -=over +=over 4 =item B =back -=over +=over 4 =item Pod::ParseTree-EB =back -=over +=over 4 =item $ptree-EB =back -=over +=over 4 =item $ptree-EB =back -=over +=over 4 =item $ptree-EB =back -=over +=over 4 =item $ptree-EB =back -=over +=over 4 =item $ptree-EB =back -=over +=over 4 =item Pod::ParseTree::B =back -=over +=over 4 =item SEE ALSO @@ -11584,7 +11654,7 @@ B, package B =head2 Pod::LaTeX - Convert Pod data to formatted Latex -=over +=over 4 =item SYNOPSIS @@ -11592,7 +11662,7 @@ B, package B =back -=over +=over 4 =item OBJECT METHODS @@ -11600,7 +11670,7 @@ C =back -=over +=over 4 =item Data Accessors @@ -11632,7 +11702,7 @@ B B -=over +=over 4 =item Subclassed methods @@ -11650,7 +11720,7 @@ B B -=over +=over 4 =item List Methods @@ -11662,7 +11732,7 @@ B B -=over +=over 4 =item Methods for headings @@ -11670,7 +11740,7 @@ B =back -=over +=over 4 =item Internal methods @@ -11686,7 +11756,7 @@ B<_create_index> B<_clean_latex_commands> -=over +=over 4 =item NOTES @@ -11702,7 +11772,7 @@ B<_clean_latex_commands> =head2 Pod::Man - Convert POD data to formatted *roff input -=over +=over 4 =item SYNOPSIS @@ -11728,7 +11798,7 @@ line %d, Unmatched =back =head2 Pod::ParseUtils - helpers for POD parsing and conversion -=over +=over 4 =item SYNOPSIS @@ -11736,7 +11806,7 @@ line %d, Unmatched =back =back -=over +=over 4 =item Pod::List @@ -11760,7 +11830,7 @@ $list-Eparent() $list-Etag() -=over +=over 4 =item Pod::Hyperlink @@ -11788,7 +11858,7 @@ $link-Etype() $link-Elink() -=over +=over 4 =item Pod::Cache @@ -11800,7 +11870,7 @@ $cache-Eitem() $cache-Efind_page($name) -=over +=over 4 =item Pod::Cache::Item @@ -11822,7 +11892,7 @@ $cacheitem-Efind_node($name) $cacheitem-Eidx() -=over +=over 4 =item AUTHOR @@ -11832,7 +11902,7 @@ $cacheitem-Eidx() =head2 Pod::Parser - base class for creating POD filters and translators -=over +=over 4 =item SYNOPSIS @@ -11851,13 +11921,13 @@ B<-warnings> (default: unset) =back -=over +=over 4 =item RECOMMENDED SUBROUTINE/METHOD OVERRIDES =back -=over +=over 4 =item B @@ -11865,7 +11935,7 @@ C<$cmd>, C<$text>, C<$line_num>, C<$pod_para> =back -=over +=over 4 =item B @@ -11873,7 +11943,7 @@ C<$text>, C<$line_num>, C<$pod_para> =back -=over +=over 4 =item B @@ -11881,73 +11951,73 @@ C<$text>, C<$line_num>, C<$pod_para> =back -=over +=over 4 =item B =back -=over +=over 4 =item OPTIONAL SUBROUTINE/METHOD OVERRIDES =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item METHODS FOR PARSING AND PROCESSING =back -=over +=over 4 =item B @@ -11957,109 +12027,109 @@ I|I =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item ACCESSOR METHODS =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =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 @@ -12071,13 +12141,13 @@ I|I =head2 Pod::Plainer - Perl extension for converting Pod to old style Pod. -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item EXPORT @@ -12092,7 +12162,7 @@ I|I =head2 Pod::Select, podselect() - extract selected sections of POD from input -=over +=over 4 =item SYNOPSIS @@ -12108,55 +12178,55 @@ input =back -=over +=over 4 =item OBJECT METHODS =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item B =back -=over +=over 4 =item EXPORTED FUNCTIONS =back -=over +=over 4 =item B @@ -12164,31 +12234,31 @@ B<-output>, B<-sections>, B<-ranges> =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 @@ -12198,7 +12268,7 @@ B<-output>, B<-sections>, B<-ranges> =head2 Pod::Text - Convert POD data to formatted ASCII text -=over +=over 4 =item SYNOPSIS @@ -12224,7 +12294,7 @@ specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape: =head2 Pod::Text::Color - Convert POD data to formatted color ASCII text -=over +=over 4 =item SYNOPSIS @@ -12241,7 +12311,7 @@ specification "%s", %s:%d: Unknown command paragraph "%s", Unknown escape: =head2 Pod::Text::Termcap, Pod::Text::Color - Convert POD data to ASCII text with format escapes -=over +=over 4 =item SYNOPSIS @@ -12256,7 +12326,7 @@ text with format escapes =head2 Pod::Usage, pod2usage() - print a usage message from embedded pod documentation -=over +=over 4 =item SYNOPSIS @@ -12269,7 +12339,7 @@ C<-pathlist> =item EXAMPLES -=over +=over 4 =item Recommended Use @@ -12285,7 +12355,7 @@ C<-pathlist> =head2 SDBM_File - Tied access to sdbm files -=over +=over 4 =item SYNOPSIS @@ -12295,7 +12365,7 @@ C, C, C =item DIAGNOSTICS -=over +=over 4 =item C @@ -12307,7 +12377,7 @@ C, C, C =head2 Safe - Compile and execute code in restricted compartments -=over +=over 4 =item SYNOPSIS @@ -12317,7 +12387,7 @@ a new namespace, an operator mask =item WARNING -=over +=over 4 =item RECENT CHANGES @@ -12340,7 +12410,7 @@ Memory, CPU, Snooping, Signals, State Changes =head2 Search::Dict, look - search for key in dictionary file -=over +=over 4 =item SYNOPSIS @@ -12350,7 +12420,7 @@ Memory, CPU, Snooping, Signals, State Changes =head2 SelectSaver - save and restore selected file handle -=over +=over 4 =item SYNOPSIS @@ -12360,13 +12430,13 @@ Memory, CPU, Snooping, Signals, State Changes =head2 SelfLoader - load functions only on demand -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item The __DATA__ token @@ -12388,13 +12458,13 @@ Memory, CPU, Snooping, Signals, State Changes =head2 Shell - run shell commands transparently within perl -=over +=over 4 =item SYNOPSIS =item DESCRIPTION -=over +=over 4 =item OBJECT ORIENTED SYNTAX @@ -12407,7 +12477,7 @@ Memory, CPU, Snooping, Signals, State Changes =head2 Socket, sockaddr_in, sockaddr_un, inet_aton, inet_ntoa - load the C socket.h defines and structure manipulators -=over +=over 4 =item SYNOPSIS @@ -12423,7 +12493,7 @@ pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN =head2 Storable - persistency for perl data structures -=over +=over 4 =item SYNOPSIS @@ -12441,7 +12511,7 @@ pack_sockaddr_un PATH, unpack_sockaddr_un SOCKADDR_UN =item WIZARDS ONLY -=over +=over 4 =item Hooks @@ -12477,7 +12547,7 @@ C =head2 Symbol - manipulate Perl symbols and their names -=over +=over 4 =item SYNOPSIS @@ -12487,7 +12557,7 @@ C =head2 Sys::Hostname - Try every conceivable way to get hostname -=over +=over 4 =item SYNOPSIS @@ -12500,7 +12570,7 @@ C =head2 Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl interface to the UNIX syslog(3) calls -=over +=over 4 =item SYNOPSIS @@ -12521,7 +12591,7 @@ closelog =head2 Syslog::Syslog, Sys::Syslog, openlog, closelog, setlogmask, syslog - Perl interface to the UNIX syslog(3) calls -=over +=over 4 =item SYNOPSIS @@ -12541,7 +12611,7 @@ closelog =head2 Term::ANSIColor - Color screen output using ANSI escape sequences -=over +=over 4 =item SYNOPSIS @@ -12563,7 +12633,7 @@ subs" in use =head2 Term::Cap - Perl termcap interface -=over +=over 4 =item SYNOPSIS @@ -12575,7 +12645,7 @@ subs" in use =head2 Term::Complete - Perl word completion module -=over +=over 4 =item SYNOPSIS @@ -12594,7 +12664,7 @@ EtabE, ^D, ^U, EdelE, EbsE =head2 Term::ReadLine - Perl interface to various C packages. If no real package is found, substitutes stubs instead of basic functions. -=over +=over 4 =item SYNOPSIS @@ -12617,7 +12687,7 @@ C, C, C =head2 Test - provides a simple framework for writing test scripts -=over +=over 4 =item SYNOPSIS @@ -12639,13 +12709,13 @@ NORMAL TESTS, SKIPPED TESTS, TODO TESTS =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 @@ -12672,7 +12742,7 @@ C, C, C