summaryrefslogtreecommitdiff
path: root/gnu/usr.bin/perl
AgeCommit message (Collapse)Author
2000-04-09Fix bug when doing C<FOO I<BAR>>; rra@stanford.eduTodd C. Miller
2000-04-08Make installsitebin '/usr/local/bin'Todd C. Miller
2000-04-07Win32.pod should go in man3p, not man1. The only reason we evenTodd C. Miller
install this is to have a complete set of perl docs (so all xrefs are existent).
2000-04-07need -fPIC on sparc for libperl.soTodd C. Miller
2000-04-06perl-5.6.0 + local changesTodd C. Miller
2000-04-06virgin perl 5.6.0Todd C. Miller
2000-04-05seed srandom from /dev/arandom not /dev/urandomTodd C. Miller
2000-02-02Remove -Bforcearchive from lddlflags. -Bforcearchive only makes senseTodd C. Miller
if you are building a shared lib from a .a full of pic objects. This is not how perl builds shared libs and it hoses tk. Also sink with the hints file in perl5.005_63 (cosmetic)
2000-01-30Remove perly.c dependency on perly.y; should not be needed but...Todd C. Miller
2000-01-28Remove perly.y so Configure doesn't think things are missing.Todd C. Miller
2000-01-28Prevent make from trying to build perly.y for good.Todd C. Miller
2000-01-27Take /usr/local/lib out of glibpth and libpth. Define locincpth andTodd C. Miller
loclibpth to be /usr/local/include and /usr/local/lib respectively. This allows third party modules to grab stuff from /usr/local/{lib,include} but perl itself doesn't search for things there during a build.
2000-01-18Add /usr/local/lib to libpth/glibpth since ports installs thingsTodd C. Miller
in /usr/local/lib.
2000-01-17Install stripped version of a2p; millert@ ok.Federico G. Schwindt
1999-11-28Keep rules in bsd.sys.mk from yacc'ing on perly.yTodd C. Miller
1999-11-26Run Configure as part of a 'beforedepend' target in perl's Makefile.bsd-wrapperTodd C. Miller
instead of explicitly in the top-level Makefile.
1999-11-23missed in shared libperl mods due to cvs bugTodd C. Miller
1999-11-23Import of stock perl 5.8.5Todd C. Miller
1999-11-09Install a shared libperl and link against it. Put libperl in /usr/libTodd C. Miller
where it belongs instead of in /usr/libdata/perl5/alpha-openbsd/5.00503/CORE. The shared lib version number will get cranked for each new perl release so this is safe to do.
1999-08-31Don't need -fno-strict-aliasing, our gcc has strict aliasing turned off by ↵Todd C. Miller
default.
1999-08-27check for arch that supports -s flagTodd C. Miller
1999-08-26OpenBSD CVS tagTodd C. Miller
1999-08-20add -fno-strict-aliasingTodd C. Miller
1999-08-20Link with "-L. -lperl" if building a shrared libperl on OpenBSDTodd C. Miller
1999-08-20comment out shared libperl support for the time beingTodd C. Miller
1999-08-20Link perl binary with shared libperlTodd C. Miller
1999-08-20Take advantage of "arch -s"Todd C. Miller
1999-08-19The mips test for dynamic loading was wrongNiklas Hallqvist
1999-07-04egcs has been fixed.Marc Espie
No longer need those.
1999-05-27Use -O1 to work around egcs/m68k bugTodd C. Miller
1999-05-27Real fix... this goes into OPTIMIZE, not CCFLAGS.Marc Espie
Recalling fixes from memory is not such a hot idea.
1999-05-26egcs Internal compiler errors on m68k.Marc Espie
1999-05-16remove the "cat" prefix from man extensions since it makes perldoc send the ↵Todd C. Miller
wrong section number to pod2man
1999-05-14Need to check for the c suffix on args to the -size switch. Patch sent to ↵Todd C. Miller
perl maintainers.
1999-05-11cvs missed this in the last perl commit. Bad cvs.Todd C. Miller
1999-05-11Go back to colon-separated paths approach but truncate lib pathsTodd C. Miller
on ':' in configpm when generating Config.pl. This is a bit of a hack but better than hacking a large number of modules. Turns out we still need /usr/libdata/perl5/site_perl for the .ph files.
1999-05-09o kill colon-separated paths in *libexp, they confuse too many modulesTodd C. Miller
o kill MakeMaker hack (no longer needed) o define APPLLIB_EXP to be /usr/local/libdata/perl5 to let users override standard modules if they want The perl search path in @INC is now: /usr/local/libdata/perl5 /usr/libdata/perl5/i386-openbsd/5.00503 /usr/libdata/perl5 /usr/local/libdata/perl5/site_perl/i386-openbsd /usr/local/libdata/perl5/site_perl .
1999-05-09Deal with colon-separated paths in *libexp variables. This is aTodd C. Miller
hack and I may simply change those variables to point to a single pathname.
1999-05-04Move perl lib files to /usr/libdata/perl5 and /usr/local/libdata/perl5.Todd C. Miller
Now install perl lib manpages in /usr/share/man/cat3p. Add gen_openbsd_mandep, an emasculated version of installman that just generates the man dependencies and MANALL declaration. NOTE: you must update your make(1) for the new man pages to format.
1999-05-03For each search dir in /usr/lib/perl5, also look in /usr/local/lib/perl5.Todd C. Miller
This is mostly for ports.
1999-05-02Don't need to set ccflags or cppflags to be emptyTodd C. Miller
1999-05-02fix typos, spotted by espieTodd C. Miller
1999-04-30Crank the for loop max index so test #2 succeeds on fast machines. Total ↵Todd C. Miller
test running time is still limited to 10sec. I still think this is a bogus test though.
1999-04-30Use arch, not unameTodd C. Miller
1999-04-30more cruftTodd C. Miller
1999-04-29New configuration method, use a combination of hints and config.over. Also ↵Todd C. Miller
add in OpenBSD-specific patches
1999-04-29Import of stock perl 5.8.5Todd C. Miller
1999-04-29perl5.005_03 (stock)Todd C. Miller
1999-04-29perl5.005_03Todd C. Miller
1999-02-04Grok things like 1.7976931348623157E+308 and the [fF] suffix (float).Todd C. Miller
limits.ph is now almost usable...