summaryrefslogtreecommitdiffstats
path: root/contrib
Commit message (Collapse)AuthorAgeFilesLines
* vmunix -> kernelnectar1998-11-161-2/+2
| | | | | PR: port/8543 Submitted by: jkb@best.com
* Prevent MakeMaker to produce /usr/local/local/bin path forache1998-11-151-3/+4
| | | | INSTALLSCRIPT and INSTALLBIN: it broke ports
* update for latest vendor importobrien1998-11-141-4/+4
|
* Clean up conflicts.obrien1998-11-147-85/+144
|
* This commit was generated by cvs2svn to compensate for changes in r41142,obrien1998-11-1424-36/+504
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Virgin import of AMD (am-utils) v6.0b1obrien1998-11-1432-130/+648
| |
* | Change dirty block list handling to use TAILQ macros.peter1998-10-311-8/+8
| |
* | Per request from ache, change the numbering scheme of __FreeBSD_cc_version.jdp1998-10-292-2/+2
| | | | | | | | | | Its form is now like __FreeBSD_version, with the FreeBSD revision in the top digits.
* | Add a new predefined preprocessor symbol "__FreeBSD_cc_version",jdp1998-10-292-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with a numeric value that describes the feature level of the compiler. This can be used to check for the presence/absence of FreeBSD-specific compiler features. The value is a decimal number whose digits have the form VRRRRFF, where: V = Compiler vendor. 0 (elided) means gcc. RRRR = Vendor's version number, e.g., 2721 for the current gcc version (2.7.2.1). FF = FreeBSD-specific revision level. 00 means the stock compiler from the vendor. The value of "__FreeBSD_cc_version" is hard-coded in "src/contrib/gcc/config/i386/freebsd.h" and must be incremented when new FreeBSD-specific compiler features are added. I considered simply picking up the value of FreeBSD_version from <osreldate.h>. But that would break cross compiles of gcc. PR: Part of the fix for gnu/8452 Suggested by: bde
* | Clarify a rather ambiguous debugging message.jkh1998-10-281-2/+2
| |
* | update to match realityobrien1998-10-251-5/+6
| |
* | PR: 8429thepish1998-10-241-1/+1
| | | | | | | | | | Submitted by: jkb@FreeBSD.ORG correct typo in example
* | "Fixed" a printf format error. Use bogus casts to avoid using %p so thatbde1998-10-171-1/+3
| | | | | | | | the output doesn't change (unless the old format caused runtime errors).
* | Fixed printf format errors.bde1998-10-174-6/+6
| |
* | Fixed the type of a signal handler.bde1998-10-171-2/+3
| |
* | Fix minor bogon pointed out by perl5's own perldoc.markm1998-10-111-2/+2
| |
* | Cleanup. No need to install manpages here; no other system modulemarkm1998-10-111-1/+2
| | | | | | | | does it, and it is done /in toto/ elsewhere.
* | By popular request, mention that mailq responds to the same options asdes1998-10-071-4/+8
| | | | | | | | | | | | sendmail(8). PR: i386/8149
* | -v to show compiled in paths doesn't seem to exist.obrien1998-10-041-3/+1
| | | | | | | | | | PR: docs/7912 Submitted by: Stephen J. Roznowski <sjr@home.net>
* | Fix 'noatime' bug that was unrelated to use of noatime.nate1998-10-031-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The problem is caused when a directory block is compacted. When this occurs, softdep_change_directoryentry_offset() is called to relocate each directory entry and adjust its matching diradd structure, if any, to match the new location of the entry. The bug is that while softdep_change_directoryentry_offset() correctly adjusts the offsets of the diradd structures on the pd_diraddhd[] lists (which are not yet ready to be committed to disk), it fails to adjust the offsets of the diradd structures on the pd_pendinghd list (which are ready to be committed to disk). This causes the dependency structures to be inconsistent with the buf contents. Now, if the compaction has moved a directory entry to the same offset as one of the diradd structures on the pd_pendinghd list *and* a syscall is done that tries to remove this directory entry before this directory block has been written to disk (which would empty pd_pendinghd), a sanity check in newdirrem() will call panic() when it notices that the inode number in the entry that it is to be removed doesn't match the inode number in the diradd structure with that offset of that entry. Reviewed by: Kirk McKusick <mckusick@McKusick.COM> Submitted by: Don Lewis <Don.Lewis@tsc.tdk.com>
* | Fix default location of *.ph file install.markm1998-10-011-2/+2
| | | | | | | | Asked-for-by: ache
* | Whitespace cleanup. Probable patch cut 'n paste.markm1998-10-011-1/+1
| |
* | Rewrite the bits of the solib code to handle implentations where dlopendfr1998-09-251-86/+196
| | | | | | | | | | | | may insert into the list of loaded libraries (ours is one) instead of appending to the end of the list. Also cope with dlclose() removing libraries from the list.
* | Part #1 of suidperl repair.markm1998-09-242-0/+23
| |
* | Eliminate a race in VOP_FSYNC() when softupdates is enabled.luoqi1998-09-241-1/+2
| | | | | | | | | | | | | | | | | | | | Submitted by: Kirk McKusick <mckusick@McKusick.COM> Two minor changes are also included, 1. Remove gratuitious checks for error return from vn_lock with LK_RETRY set, vn_lock should always succeed in these cases. 2. Back out change rev. 1.36->1.37, which unnecessarily makes async mount a little more unstable. It also keeps us in sync with other BSDs. Suggested by: Bruce Evans <bde@zeta.org.au>
* | Fix segmentation violation that sometimes occurred when warningjdp1998-09-191-1/+3
| | | | | | | | | | | | | | symbols were used. PR: bin/7980 Submitted by: Doug Rabson <dfr>
* | s/the the/to the/phk1998-09-171-2/+2
| | | | | | | | | | | | PR: 7922 Reviewed by: phk Submitted by: Kaneda Hiloshi <vanitas@ma3.seikyou.ne.jp>
* | Merge tcpdump 3.4fenner1998-09-1521-90/+255
| | | | | | | | PR: bin/7877
* | This commit was generated by cvs2svn to compensate for changes in r39297,fenner1998-09-1532-755/+1638
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Virgin import of LBL tcpdump v3.4fenner1998-09-1554-960/+2206
| | |
* | | Merge libpcap version 0.4fenner1998-09-155-28/+95
| | | | | | | | | | | | PR: bin/7877
* | | This commit was generated by cvs2svn to compensate for changes in r39291,fenner1998-09-1519-245/+737
|\ \ \ | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | Virgin import of LBL libpcap v0.4fenner1998-09-1525-379/+1140
| | | |
* | | | Fix for the 2.2.7 a.out --> 3.0 ELF cross-build.markm1998-09-151-13/+29
| | | | | | | | | | | | | | | | I need report backs on this one, guys!!
* | | | Bring core-regset.c back to life. It is needed for handling ELFjdp1998-09-141-0/+130
| | | | | | | | | | | | | | | | core dumps.
* | | | Support our "nfsv2" option. (originally added to old amd/amd/host_opts.cobrien1998-09-141-1/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rev 1.5) The "nfsv2" option is equivant to "proto=udp,vers=2". It is debatable whether NFS v2 should force "proto=udp" but I figure that is what most people will expect. Note, I can get the new Amd to mount a 2.2-STABLE box with "proto=tcp,vers=2". RFC 1094 does not disallow such behavior.
* | | | Support PnP compatibility IDs. This allow e.g. the ed driver to pickeivind1998-09-131-11/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | up any PnP NE2000 compatible card, instead of forcing us to always update ID lists. Submitted by: Ugo Paternostro <paterno@dsi.unifi.it>
* | | | Add a .St -p1003.1g.wollman1998-09-121-0/+10
| | | |
* | | | Typo fix.alex1998-09-121-1/+1
| | | | | | | | | | | | | | | | | | | | PR: 7906 Submitted by: Yoshihiko OHTA <yohta@bres.tsukuba.ac.jp>
* | | | Typo fixes.alex1998-09-121-2/+2
| | | | | | | | | | | | | | | | | | | | PR: 7904 Submitted by: Issei Hirayama <iss@mail.wbs.ne.jp>
* | | | Merge our older Amd manpages with the new am-utils manpages.obrien1998-09-129-1181/+1339
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The am-utils manpages were un-mandocafied, un4.4BSD'ed with CSRG copyrights regressed to 1989. This work was done by Brian Handy who I am very greatful to. (only a few minor tweaks by me) Submitted by: Brian Handy <handy@lambic.physics.montana.edu>
* | | | sprintf -> snprintfimp1998-09-091-12/+13
| | | |
* | | | Add alpha-*=freebsd* to configureimp1998-09-091-0/+11
| | | |
* | | | Use readlink correctlyimp1998-09-091-3/+5
| | | |
* | | | Fully use our own generated files for NFSv3.obrien1998-09-091-2/+10
| | | |
* | | | Minimalist fixes to make BMaked perl build.markm1998-09-096-11/+28
| | | |
* | | | This commit was generated by cvs2svn to compensate for changes in r38980,markm1998-09-09854-0/+352198
|\ \ \ \ | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | | | Initial import of Perl5. The king is dead; long live the king!markm1998-09-09854-0/+352198
| / / /
* | | | Make profiling work for ELF. gprof now autodetects the format ofjdp1998-09-072-8/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | the executable file, so it will work for both a.out and ELF format files. I have split the object format specific code into separate source files. It's cleaner than it was before, but it's still pretty crufty. Don't cheat on your make world for this update. A lot of things have to be rebuilt for it to work, including the compiler and all of the profiled libraries.
* | | | Added .St -susv2 --> Version 2 of the Single UNIX Specificationalex1998-09-071-0/+3
| | | |
OpenPOWER on IntegriCloud