Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-10-12 | Remove hack from MM_Unix.pm and simply set man1dir to 'none' in | Todd C. Miller | |
installperl to prevent man page installation of the perl man pages. | |||
2008-10-07 | re-enable ieeefp mode on alpha again, now that the kernel code is | Martynas Venckus | |
fixed. tested by me and naddy@. ok theo | |||
2008-10-07 | Prevent cvs keyword expansion from causing a test failure. | Todd C. Miller | |
2008-10-01 | Add another change that got dropped in the merge of perl 5.10.0. | Todd C. Miller | |
This time, add a comment describing why it is there. | |||
2008-10-01 | re-apply change from rev 1.18 | Todd C. Miller | |
2008-09-30 | Add back a change that got lost in the final merge. | Todd C. Miller | |
We cannot mkdep DynaLoader.c since it is a generated file. | |||
2008-09-30 | Remove a couple more bogus man pages and add missing MLINKs. The | Todd C. Miller | |
makewhatis info for the perl man pages now matches the pages themselves. | |||
2008-09-29 | Remove bogus man pages and fix the NAME lines for many more. | Todd C. Miller | |
2008-09-29 | fix conflicts and merge in local changes to perl 5.10.0 | Todd C. Miller | |
2008-09-29 | import perl 5.10.0 from CPAN | Todd C. Miller | |
2008-07-09 | Incorporate Otto's yacc skeleton fix. | Todd C. Miller | |
2008-05-05 | enforce make -j1 in SDBM_File, there is a nasty race that's hard to fix. | Marc Espie | |
okay millert@ | |||
2008-03-28 | Enable shared libraries on landisk. | Dale Rahn | |
The sh architecture required some different linkage than most platforms, This fixes those other requirements. | |||
2008-03-24 | msg_controllen has to be CMSG_SPACE so that the kernel can account for | Theo de Raadt | |
each cmsg_len (ie. msg_controllen = sum of CMSG_ALIGN(cmsg_len). This works now that kernel fd passing has been fixed to accept a bit of sloppiness because of this ABI repair. lots of discussion with kettenis | |||
2008-03-15 | This should set msg_control using CMSG_SIZE(), and not assume that | Theo de Raadt | |
sizeof(buffer) is the right size (alignments can mess it up). Code is apparently not used, but it is better if all examples show the correct idiom ok hshoexer | |||
2008-01-29 | fix another make -j race, avoid rebuilding some archives twice in parallel. | Marc Espie | |
okay millert@, went thru several full builds including >500 perl packages... | |||
2007-11-28 | insert .WAIT so that stuff is built first, and checked afterwards, instead | Marc Espie | |
of everything happening simultaneously. | |||
2007-11-26 | fix build for real, forward maninstall to wrapper1 | Marc Espie | |
okay deraadt@ | |||
2007-11-25 | espie broke the make install codepath (and I think not just for DESTDIR), so ↵ | Theo de Raadt | |
back it out | |||
2007-11-25 | man pages are in Makefile.bsd-wrapper1, so MLINKS should be there too, | Theo de Raadt | |
or it attempts to ln them before they exist.... | |||
2007-11-24 | some make -j fixes. | Marc Espie | |
- put the man pages in a separate Makefile, they need main build to be finished for dependencies to resolve correctly. - run perl's make depend before we run build. We can probably get rid of most of it, but one of Todd's remarks made me realize we still want to depend perlmain. | |||
2007-11-11 | import perl 5.10.0 from CPAN | Simon Bertrang | |
2007-11-11 | update File::Temp to CPAN version 0.18 as other modules start to use it | Simon Bertrang | |
ok millert@ | |||
2007-11-07 | Fix potential heap overflow given a specially crafted regexp. | Todd C. Miller | |
From Tavis Ormandy; adapted from fixes in the perl 5.9.x codebase. | |||
2007-08-24 | fix a bug leading to infinite recursion; adapted from CPAN | Simon Bertrang | |
ok millert@ | |||
2007-05-20 | hack generated Makefile so that section is properly 3p. | Marc Espie | |
Not really clean, but this code is bound to change in the next perl version anyways. okay millert@ | |||
2007-05-15 | pass COPTS thru, okay millert@ | Marc Espie | |
2007-02-24 | replace 400 lines of md5 code in Digest::MD5's XS with 4 lines | Simon Bertrang | |
that use our system md5(3) idea by espie@, help and ok millert@ | |||
2007-02-16 | Back-port a getpeername() fix from IO version 1.30. | Todd C. Miller | |
Also add a missing defined() that fixes send on unix domain sockets. | |||
2007-02-04 | upgrade documentation so it reflects the way MakeMaker currently fills | Marc Espie | |
the test framework. okay millert@ | |||
2007-02-01 | Ignore HASATTRIBUTE_UNUSED for C++ as our g++ does not grok | Todd C. Miller | |
the __unused__ attribute. Also give XS functions C linkage. Patch taken from perl-current. | |||
2007-01-31 | gcc 3.3 doesn't support __attribute__((unused)) in C++ mode. Patch | Todd C. Miller | |
taken from the perl devel tree. Required to build C++-based perl extensions. OK espie@ (who had a slightly different patch). | |||
2006-11-30 | When using setproctitle() don't fall back into the non-setproctitle() | Todd C. Miller | |
code. Fixes an environment corruption problem when $0 is modified. From Alexander Bluhm; this is perl bug #41008 | |||
2006-11-16 | let E<copy> be recognized for man documents as well. | Marc Espie | |
Noticed by jasper@, work by millert@ and me, okay millert@ | |||
2006-11-15 | make sure pod parsers are in a sane state at beginning of parse. | Marc Espie | |
pod2text and pod2man re-use the same parser on a list of files, and will lose some information if some intermediate documents produce unbalanced calls to begin_cmd/end_cmd. okay millert@ | |||
2006-11-09 | Don't build profiled libperl; requested by deraadt@ | Todd C. Miller | |
2006-11-09 | no shlibs on sh yet | Theo de Raadt | |
2006-04-01 | Remove index entries for \n since nroff will try to expand this. | Todd C. Miller | |
No one uses the index entries anyway... | |||
2006-04-01 | Fix typo; E<GT> -> E<gt>. From jmc@ | Todd C. Miller | |
2006-03-28 | merge in perl 5.8.8 | Todd C. Miller | |
2006-03-28 | perl 5.8.8 import | Todd C. Miller | |
2006-03-28 | perl 5.8.8 import | Todd C. Miller | |
2006-01-02 | The official fix for the Perl sprintf buffer overflow. | Brad Smith | |
ok millert@ | |||
2005-12-03 | Use PERL_INT_MAX instead of INT_MAX in previous commit for consistency | Todd C. Miller | |
with the rest of perl. On OpenBSD PERL_INT_MAX is the same as INT_MAX. From rse@engelschall.com. | |||
2005-12-01 | Fix an int oflow bug in perl's parameter format string code. | Todd C. Miller | |
Credit: Jack Louis of Dyad Security | |||
2005-06-06 | Add a missing check for NULL before dereferencing a buf pointer in | Todd C. Miller | |
perl's yyerror(). Fixes a transient core dump on syntax error uncovered by random malloc() return addresses. Sent upstream via perlbug. | |||
2005-03-02 | get rid of an embedded compilation date in perl(1) | Marc Balmer | |
ok henning@, millert@ | |||
2005-02-18 | Set cf_time to the epoch for consistency of generated files. | Todd C. Miller | |
2005-02-02 | Limit PERLIO_DEBUG environtment variable to a sane length and just ignore | Todd C. Miller | |
it if setuid. Found by Kevin Finisterre, fix from perl developers. | |||
2005-01-15 | sync in-tree perl with 5.8.6 | Todd C. Miller | |