summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Merge from vendor tzdata2002d.wollman2002-10-163-15/+110
| | | | | PR: 44004 MFC after: 3 days
* Re-sort to reflect change of East Timor from TP to TL.wollman2002-10-161-2/+2
|
* Add HP ScanJet 2200Cfjoe2002-10-151-0/+1
| | | | | PR: 41375 Approved by: joe
* update to better reflect reality:sam2002-10-141-51/+65
| | | | | | | | | o describe additional argument in driver callbacks o describe flow-control mechanism for processing crypto requests o remove old cruft o remove openbsd-specific cruft o fixup some references o yada yada ...
* Add LC_CTYPE information for characters with lead bytes ED, EE, FA, FB, FC.tjr2002-10-141-0/+13
|
* ia64 specific CFLAGS change:marcel2002-10-131-1/+1
| | | | | | | | | | | | Fix the "@gprel relocation against dynamic symbol xxx" linker error. Variables defined in the link unit and small enough to be put in the short data section will have a gp-relative access sequence (using the @gprel relocation). It is invalid to have @gprel relocations in shared libraries, because they are to be resolved by the static linker and not the dynamic linker. The -fpic option will cause @ltoff relocations for @gprel relocations, but the side-effects are untested (if any). Instead, disable/eliminate the short data section to achieve the same.
* Fix a dozen typos, among them dmr's last name :-) and the ever soschweikh2002-10-121-299/+299
| | | | | | popular "dependant" (which the original reference manual does not have). Nuke whitespace at EOL.
* - Add a section on logging ktr entries to disk via ALQ.jeff2002-10-121-0/+42
|
* - Add a reference to ktrdump(8)jeff2002-10-121-12/+2
| | | | - Remove the stale comments about ktr extend.
* - Move the description of KTR_CPUMASK into the "Event Masking" section.jeff2002-10-121-27/+2
| | | | | - Remove the "Extensions" section since it is no longer relavent. - Create a new section for KTR_VERBOSE and put it's description there.
* - Remove the bogus reference to the removed KTR_EXTEND option.jeff2002-10-121-5/+2
| | | | | | - Add ktrdump(8) to the SEE ALSO section. - Remove the BUGS section that complains about not having a userland utility for viewing ktr data.
* SWI_SWITCH and SWI_NOSWITCH were OBE a long time ago.jhb2002-10-111-12/+5
|
* Change iov_base's type from `char *' to the standard `void *'. Allmike2002-10-111-1/+1
| | | | | uses of iov_base which assume its type is `char *' (in order to do pointer arithmetic) have been updated to cast iov_base to `char *'.
* Slight overhaul of arc4random() and friends.phk2002-10-111-6/+24
| | | | | | | | | | | | | | | | | | | One bug fixed: Use getmicrouptime() to trigger reseeds so that we cannot be tricked by a clock being stepped backwards. Express parameters in natural units and with natural names. Don't use struct timeval more than we need to. Various stylistic and readability polishing. Introduce arc4rand(void *ptr, u_int len, int reseed) function which returns a stream of pseudo-random bytes, observing the automatic reseed criteria as well as allowing forced reseeds. Rewrite arc4random() in terms of arc4rand(). Sponsored by: DARPA & NAI Labs.
* Groff 1.18.1 comes in with ANSI color support, enabled by default.ru2002-10-111-1/+1
| | | | | | | | | | | | | | In "nroff" mode, italic font renders as an underlined text, which makes it indistinguishable from the bold text on color monitors (cons25 terminal type), yet it requires the less(1)'s -R option. (Refer to the new grotty(1) manpage for details.) So turn off the color support for now (when generating catpages), until we figure out what do we do with this new feature. I have a patch for grotty(1) that tells it to use the "reverse video" attribute to render the italic font. Once this is accepted, we can turn color support back on (if there won't be any objections from the community).
* - Fix a missort in the Time section.jhb2002-10-101-4/+4
| | | | | | | - Specify date for OS X 10.1. - Whitespace fix for NetBSD 1.5.3 release date. Submitted by: Sergey A. Osokin <osa@freebsd.org.ru> (mostly)
* Update "UNIX History" URL.jhb2002-10-101-1/+1
| | | | Submitted by: Sergey A. Osokin <osa@freebsd.org.ru>
* - Sort references in the Time section alphabetically.jhb2002-10-101-9/+8
| | | | | | - Remove U25 time reference as it is never referenced. Submitted by: Sergey A. Osokin <osa@freebsd.org.ru>
* Update BSD family tree to include FreeBSD 4.6.2, NetBSD 1.6, and Mac OS Xjhb2002-10-101-12/+18
| | | | | | 10.2. Submitted by: Sergey A. Osokin <osa@freebsd.org.ru>
* Add BSD/OS 4.3.maxim2002-10-101-11/+13
| | | | | | Submitted by: Sergey A. Osokin <osa@FreeBSD.org.ru> Reviewed by: grog MFC after: 1 week
* de-__P()alfred2002-10-104-12/+9
|
* Change x_fmt to %Y-%m-%dache2002-10-091-1/+1
| | | | | PR: 41043 Submitted by: Henrik Tunedal <henrik@tunedal.nu>
* Add definitions for the new international monetary formatting struct lconvtjr2002-10-091-0/+12
| | | | members to English (Australia) as an example.
* FreeBSD 4.7 enters the BSD family tree sometime on October 8, 2002.murray2002-10-081-3/+3
|
* Add device driver for Belkin F5U103 and compatible USB-to-serial adapters.kan2002-10-081-0/+98
| | | | | Reviewed by: n_hibma Approved by: obrien
* manual pages for the new kernel crypto support (need work)sam2002-10-046-1/+918
| | | | Obtained from: openbsd
* Sort in ``phone directory'' order (except for LIBC_*).ru2002-10-041-3/+3
|
* Reflect the fact that we install our libexpat as libbsdxml.phk2002-10-041-1/+1
|
* Use the -mno-align-long-strings on i386's to debloat the kernel a little.bde2002-10-041-1/+1
| | | | | | This reduces the size of GENERIC's text space by 73999 bytes (about 2%). The bloat is from approximately 3437 strings longer than 31 characters being padded to a 32-byte boundary.
* Add the new function "sbuf_done()" which returns non-zero if the sbuf isphk2002-10-041-0/+5
| | | | | | | | | finished. This allows sbufs to be used for request/response scenarioes without needing additional communication flags. Sponsored by: DARPA & NAI Labs.
* Alas, poor matcd, I knew ye well.scottl2002-10-042-395/+1
| | | | | | | | It doesn't work. It cannot be made to work. Goodbye. X-MFC after: ASAP
* Make the man page for utmp/lastlog match the actual definitions.peter2002-10-041-2/+2
|
* Add LIBEXPAT definition.phk2002-10-021-0/+1
|
* Correct the exports(5) example to use -ro in the paragraph that talksdd2002-10-021-2/+2
| | | | | | | about how exporting / and /usr works even if they're read-only. PR: 42076 Submitted by: Marco Molteni <molter@tin.it>
* Correct minor errors in the code examples.dd2002-10-011-3/+2
| | | | | PR: 41993 Submitted by: David Lay <dsl@foozle.org>
* test -h is deprecated; use -L instead.ru2002-10-011-1/+1
| | | | PR: bin/40846
* Regen:sheldonh2002-09-301-43/+369
| | | | * Hart: rev 337 of pcidevs.txt (2002-09-29)
* Allow the shell preference for make(1) to be set in make.conf(5), and hopefullyjmallett2002-09-291-0/+7
| | | | | trick a few people into setting MAKE_SHELL to csh, although that can still rebuild itself to allow them to heal the wound in their foot.
* Remove more two-letters names,ache2002-09-281-8/+9
| | | | | | we don't use them in termcap already many years. Add "su" as alias to "dumb" to help login, with comment.
* Add manpage for the pst driver (Promise SX6000)sos2002-09-272-0/+64
|
* Add a note explaining /var/empty.ceri2002-09-261-0/+4
| | | | | | PR: docs/43364 Submitted by: Kim Scarborough <sluggo@unknown.nu> MFC after: 14 days
* Document that ENOTTY is the correct "default" error return;phk2002-09-261-1/+4
|
* Document DOC_LANG.ru2002-09-261-0/+4
| | | | Reviewed by: murray
* Add a pkg_version variable so that it's possible to run portsversion insteadbrian2002-09-251-0/+14
| | | | of pkg_version in periodic/weekly/400.status-pkg.
* Remove all mention of MTX_NOSWITCH. It was obsoleted a long time ago.jhb2002-09-241-36/+7
|
* Make it works with POSIX sort (POS arg)ache2002-09-241-1/+1
| | | | All old sorts understand -k too.
* Mention about how to build sendmail with SASLv2.ume2002-09-241-0/+6
|
* Fix typo.max2002-09-211-1/+1
|
* Extend the lint handling a bit.markm2002-09-203-6/+14
| | | | | | | | | o Make it possible to prevent parts of the tree from being linted (say) during a 'make world' by setting NOLINT in a leaf Makefile. o Make "make lint" work (better) for executable programs. o Clean up (nuke!) a syntax damaged pipeline.
* The file vnode passed to VOP_LINK() should now be locked before the call.truckman2002-09-191-29/+7
|
OpenPOWER on IntegriCloud