summaryrefslogtreecommitdiff
path: root/pod/perltoc.pod
Commit message (Collapse)AuthorAgeFilesLines
* Regen toc.Jarkko Hietaniemi2001-10-191-1/+15
| | | p4raw-id: //depot/perl@12505
* Regen toc.Jarkko Hietaniemi2001-10-181-25/+175
| | | p4raw-id: //depot/perl@12488
* Regen doc with perlmodstyle added.Jarkko Hietaniemi2001-10-171-48/+178
| | | p4raw-id: //depot/perl@12470
* Rename perltootc as perltooc for 8.3-friedliness.Jarkko Hietaniemi2001-09-221-46/+66
| | | p4raw-id: //depot/perl@12132
* Remove iconv references since we are not using itJarkko Hietaniemi2001-09-201-40/+131
| | | | | | | and not going to; regen perltoc, perlmodlib. (Some references still linger in perltoc, have to figure out where they are coming from.) p4raw-id: //depot/perl@12095
* Rename the old threading tutorial, start a new one,Jarkko Hietaniemi2001-09-071-159/+235
| | | | | regen toc. p4raw-id: //depot/perl@11937
* Dispell the "use utf8" superstition.Jarkko Hietaniemi2001-08-121-1/+87
| | | p4raw-id: //depot/perl@11643
* Decommission Time::Piece; unnecessary Yet Another Time-Date Module.Jarkko Hietaniemi2001-08-101-112/+28
| | | p4raw-id: //depot/perl@11631
* Introduce more floating point classifying APIs;Jarkko Hietaniemi2001-08-091-194/+82
| | | | | | | | | | | | | try to define (most importantly) Perl_is{inf,nan}(x). For this first cut, assume none such APIs exist in non-UNIXoid platforms-- this is of course too unkind: Win32 rumoredly has _fpclass() and _isnan(), and VMS/VOS very probably have some of the APIs available. The only thing Perl uses at the moment is Perl_isnan() (has been in use for a while now). NOTE: the Win32 and NetWare config_h.?c need regenerating. p4raw-id: //depot/perl@11618
* Add PerlCE to the docs.Jarkko Hietaniemi2001-08-021-1/+109
| | | p4raw-id: //depot/perl@11550
* Regen toc.Jarkko Hietaniemi2001-07-311-36/+26
| | | p4raw-id: //depot/perl@11520
* Add information about gcc 3.0 basic block profiling.Jarkko Hietaniemi2001-07-131-7/+11
| | | p4raw-id: //depot/perl@11366
* Remove unicode::distinct, as per Inaba Hiroto.Jarkko Hietaniemi2001-07-131-39/+26
| | | p4raw-id: //depot/perl@11342
* Add HAS_PTHREAD_ATFORK.Jarkko Hietaniemi2001-07-121-1/+1
| | | p4raw-id: //depot/perl@11334
* Add README.uts from Hal Morris.Jarkko Hietaniemi2001-07-121-3/+20
| | | p4raw-id: //depot/perl@11324
* Regen Configure, modlib, toc.Jarkko Hietaniemi2001-07-121-19/+21
| | | p4raw-id: //depot/perl@11320
* Regen toc and modlib.Jarkko Hietaniemi2001-07-101-10/+165
| | | p4raw-id: //depot/perl@11261
* Regen toc.Jarkko Hietaniemi2001-07-061-23/+50
| | | p4raw-id: //depot/perl@11180
* Regen toc and modlib.Jarkko Hietaniemi2001-07-041-87/+29
| | | p4raw-id: //depot/perl@11139
* Regen api and toc.Jarkko Hietaniemi2001-07-021-40/+40
| | | p4raw-id: //depot/perl@11095
* Still one typo, regen toc.Jarkko Hietaniemi2001-07-011-1/+1
| | | p4raw-id: //depot/perl@11058
* Detypos and regen toc.Jarkko Hietaniemi2001-07-011-23/+68
| | | p4raw-id: //depot/perl@11057
* Add support for $^N, the most-recently closed group.Jarkko Hietaniemi2001-06-301-1/+1
| | | p4raw-id: //depot/perl@11038
* Regen toc.Jarkko Hietaniemi2001-06-261-14/+28
| | | p4raw-id: //depot/perl@10965
* Regen toc and modlib.Jarkko Hietaniemi2001-06-251-2/+116
| | | p4raw-id: //depot/perl@10929
* Regen toc and modlib.Jarkko Hietaniemi2001-06-241-204/+173
| | | p4raw-id: //depot/perl@10876
* After some reading I don't think we can blindlyJarkko Hietaniemi2001-06-201-4/+10
| | | | | | | | | use systems' realpath(). Too many security problems, too many buggy implementations. TODO: the realpath() emulation code in util.c doesn't seem fully operational? (readlink(), for example?) p4raw-id: //depot/perl@10744
* Make libnetcfg by default display the libnet configuration,Jarkko Hietaniemi2001-06-191-68/+92
| | | | | | -c to change, add -i for old config, document all options, regen toc. p4raw-id: //depot/perl@10701
* Regen modlib, toc.Jarkko Hietaniemi2001-06-171-6/+466
| | | p4raw-id: //depot/perl@10665
* Add perlnetware to docs; regen toc; supply skeletonJarkko Hietaniemi2001-06-161-10/+379
| | | | | docs for some Memoize submodules. p4raw-id: //depot/perl@10647
* The first steps towards cross-compilation.Jarkko Hietaniemi2001-06-151-78/+12
| | | | | | | | | | | | | | | | | | | | | | Abstract execution of compiled test executables with $run, and abstract transfer of files with $to and $from. Under cross-compilation the $run, $to, and $from will point to appropriate wrapper scripts, by default ssh and scp, but also rsh, rcp, and cp are supported. If not cross-compiling, they will be set to '', ':', and ':', respectively. With these patches I was able to get Configure for iPAQ ARM Linux on an Intel Linux about 95% right (only a few tests failed to execute or they produced incorrect results), and I was able to compile a functional miniperl. The symbol crosscompile renamed to be usecrosscompile, the corresponding C symbol from CROSSCOMPILE to USE_CROSS_COMPILE. p4raw-id: //depot/perl@10592
* Regen toc.Jarkko Hietaniemi2001-06-131-37/+34
| | | p4raw-id: //depot/perl@10560
* Podify the remaining README.platform files;Jarkko Hietaniemi2001-06-061-99/+219
| | | | | | | | | | merge README.plan9 and plan9/perlplan9.pod; delete plan9/perlplan9.* (the perlplan.doc needs to be regenerated in Plan 9); make the =head1 and =head2 in the README.platform to be a little more verbose (skipped README.os2 not to anger Ilya) so that they look better in the toc; regen toc. p4raw-id: //depot/perl@10461
* Configure tweaks; add prototype probes, make the cpp symbolsJarkko Hietaniemi2001-06-041-49/+55
| | | | | | probe to cast, not whine; test for %Ld and %Lf before %lld and %llf because the L is the ANSI way. p4raw-id: //depot/perl@10434
* Add Attribute::Handlers 0.61 from Damian Conway.Jarkko Hietaniemi2001-06-011-33/+74
| | | p4raw-id: //depot/perl@10385
* Configure tweaks; record the Berkeley DB version,Jarkko Hietaniemi2001-06-011-129/+88
| | | | | | | | | probe for realpath(), for setresuid() and setresgid() prototypes; use realpath() (try to be paranoid enough), use the setres[ug]id prototypes because glibc has the functions but not their prototypes; add -Wall -ansi to gcc ccflags; regen toc. p4raw-id: //depot/perl@10372
* Regen toc.Jarkko Hietaniemi2001-05-281-2/+171
| | | p4raw-id: //depot/perl@10266
* Regen toc. (And add the README.tru64 from #10230 to MANIFEST.)Jarkko Hietaniemi2001-05-271-52/+351
| | | p4raw-id: //depot/perl@10231
* [ID 20010525.001] Pod typo nits fixedJarkko Hietaniemi2001-05-271-1/+6
| | | | | | | | | | | | | | From: lvirden@cas.org Date: Fri, 25 May 2001 06:57:43 -0400 (EDT) Message-Id: <200105251057.f4PAvhY13003@lwv26awu.cas.org> minus the perlsolaris decimation plus the Subject: Re: [ID 20010525.001] Pod typo nits fixed From: "Philip Newton" <Philip.Newton@gmx.net> Date: Fri, 25 May 2001 18:05:55 +0200 Message-Id: <200105251604.f4PG4kt15034@chaos.wustl.edu> p4raw-id: //depot/perl@10226
* Regen toc.Jarkko Hietaniemi2001-05-161-167/+343
| | | p4raw-id: //depot/perl@10124
* perlmodlib tweaks; regen pods.Jarkko Hietaniemi2001-05-021-99/+55
| | | p4raw-id: //depot/perl@9963
* Regen toc.Jarkko Hietaniemi2001-04-191-15/+123
| | | p4raw-id: //depot/perl@9749
* Regen toc.Jarkko Hietaniemi2001-04-161-9/+162
| | | p4raw-id: //depot/perl@9717
* Regen toc.Jarkko Hietaniemi2001-04-101-98/+33
| | | p4raw-id: //depot/perl@9668
* Regen toc.Jarkko Hietaniemi2001-04-081-46/+167
| | | p4raw-id: //depot/perl@9636
* Regen toc.Jarkko Hietaniemi2001-04-061-12/+113
| | | p4raw-id: //depot/perl@9591
* Regen toc.Jarkko Hietaniemi2001-04-051-91/+173
| | | p4raw-id: //depot/perl@9562
* Document sockatmark() some.Jarkko Hietaniemi2001-03-271-11/+11
| | | p4raw-id: //depot/perl@9376
* Regen toc.Jarkko Hietaniemi2001-03-271-47/+139
| | | p4raw-id: //depot/perl@9374
* Regen toc and api pods.Jarkko Hietaniemi2001-03-181-39/+363
| | | p4raw-id: //depot/perl@9209