summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Clear am and pm fields, add empty ampm_fmt for locales I know is not AM/PMache2001-03-0213-14/+79
|
* mdoc(7) police: fix markup.ru2001-03-022-7/+9
|
* mdoc(7) police: in -offset clause, spell the ``indent'' correctly.ru2001-03-022-16/+16
|
* Fix the rest of formatting.ru2001-03-021-27/+27
|
* Add link for resource_query_unit, now documented in theimp2001-03-021-0/+1
| | | | resource_query_string man page.
* Flesh out this man page a bit more. Add information aboutimp2001-03-021-20/+58
| | | | | | | | | resource_query_unit and improve the descriptions of the parameters passed to these functions. Plus a couple minor formatting/markup changes: o Quote -1 as \-1. o .Dq hints to match resource_int_value().
* Update the BUGS section.ru2001-03-011-12/+0
| | | | | The first bug is fixed in tmac.doc, revision 1.21. The second bug fixed in doc-common, revision 1.33.
* Correct English used.asmodai2001-03-011-7/+7
|
* Numerous formatting/content fixes.ru2001-03-011-23/+28
|
* Hook Warner's resource_* manpages to the build.asmodai2001-03-011-1/+5
| | | | | This includes appropriate MLINKS for the other functions contained within them.
* Remove leading . from .Nd description.asmodai2001-03-011-1/+1
|
* Fix typo: the the -> to the.asmodai2001-03-011-5/+6
|
* Document the resource_*_value and resource_query_string families ofimp2001-03-012-0/+177
| | | | | functions. These man pages likely need some markup work, so I've specifically not added them to the Makefile yet.
* Eliminate mdocNG warnings caused by misplaced or extraneous macro calls.ru2001-02-288-20/+20
|
* Prepare for mdocNG.ru2001-02-283-8/+14
|
* update man page wrt hints usagemjacob2001-02-271-4/+4
|
* Add definitions and support for the AMD k6-2, Pentium MMX (i586/MMX),kris2001-02-272-2/+24
| | | | | | | | | and Pentium II, III and IV processors (p2, p3, p4), as well as 'mmx' and '3dnow' MACHINE_CPU tags as appropriate. In the near future this will be used to control various ports which have MMX/3dNow optimizations, instead of the ad-hoc methods currently used. Reviewed by: peter
* Short lived fame for -Wundef.asmodai2001-02-271-1/+1
| | | | Second thoughts by: bde
* Add -Wundef to BDECFLAGS:asmodai2001-02-271-1/+1
| | | | | | Warn if an undefined identifier is evaluated in an `#if' directive. Not objected to by: bde
* mdoc(7) police: utilize .St macro.ru2001-02-261-5/+4
|
* mdoc(7) police: utilize .St.ru2001-02-261-1/+3
|
* Use ``.St -p1003.1-96''.ru2001-02-2626-78/+52
|
* /^\.St/ s/-iso9945-1/-p1003.1-96/ru2001-02-266-7/+7
|
* .St -ansiC -> .St -isoCru2001-02-263-3/+3
|
* Update the list of OpenSSL manpages (now contains many more describingkris2001-02-251-0/+7
| | | | | | | libssl, for example), and hide it behind a make.conf option, WANT_OPENSSL_MANPAGES, instead of having it commented out. We still can't install these by default because of clobbering of a number of system manpages with the same name, but they're there for people who want them.
* I thought it was a new CPU :)tanimura2001-02-241-1/+1
| | | | s/i585/i586/
* Force TERM to be dumb when building termcap. ex in batch mode seemsimp2001-02-241-1/+1
| | | | | to care about the terminal setting. In emacs, make buildworld was broken because it sets TERM to emacs, which caused ex to fail.
* Shuffle sysctls a bit (thankyou whoever made them dynamic for modules)julian2001-02-231-0/+15
| | | | | | | | | | | | and add a sysctl to pppoe to activate non standard ethertypes so that idiot ISPs (apparently in France) who use equipment from idiot suppliers (rumour says 3com) who use nonstandard ethertypes can still connect. "yep, sure we do pppoe, we use a different identifier to that dictated in the standard, but sure it's pppoe!" sysctl -w net.graph.stupid_isp=1 enables the changeover.
* Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.ru2001-02-231-1/+1
| | | | | | The new Groff release will support this feature. Requested by: peter
* Typo: "interrupt" -> "harvest_interrupt"green2001-02-231-1/+1
|
* Need one additional make.conf knob, SENDMAIL_ADDITIONAL_MC to satisfy buggshapiro2001-02-222-0/+11
| | | | | | report. It allows building multiple .cf files at build time. PR: bin/19897
* Add a note indicating that SENDMAIL_MC should include the path. This isgshapiro2001-02-222-2/+4
| | | | | necessary if you expect to be able to use this setting in both /etc/mail and etc/sendmail.
* Add a 'splitter' node to separate a bidirectionaljulian2001-02-221-0/+88
| | | | | | | | | | packet flow into two unidirectional flows. Part of a suite of nodes developed for packet flow control. More to follow as I have time to port them to 5.x or as others do so. The ipfw node will be the hardest.. Submitted by: "Vitaly V. Belekhov" <vitaly@riss-telecom.ru>
* Only descend into ${MACHINE_ARCH} subdir.ru2001-02-221-2/+3
|
* mdoc(7) police: fixed misc formatting bugs.ru2001-02-221-6/+6
|
* Overhaul the MACHINE_CPU behaviour:kris2001-02-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk> after we pull in /etc/make.conf. We need to do it afterwards so we can react to the user setting of the: * CPUTYPE variable, which contains the CPU type which the user wants to optimize for. For example, if you want your binaries to only run on an i686-class machine (or higher), set this to i686. If you want to support running binaries on a variety of CPU generations, set this to the lowest common denominator. Supported values are listed in make.conf. * bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the (hopefully) correct unordered list of CPU types which should be used on that CPU. For example, an AMD k6 CPU wants any of the following: k6 k5 i586 i486 i386 This is still an unordered list so the client makefile logic is simple - client makefiles need to test for the various elements of the set in decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before. The various MACHINE_CPU lists are believed to be correct, but should be checked. * If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release builders and developers of third-party software need to make sure not to enable CPU-specific optimization when generating code intended to be portable. We probably need to move to an /etc/world.conf to allow the optimization stuff to be applied separately to world/kernel and external compilations, but it's not any worse a problem than it was before. * Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE. * Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc (only i386, alpha and ia64 first, since those are the minimally-working ports. Other architecture porters, please feel free to add the relevant gunk for your platform). Reviewed by: jhb, obrien
* Overhaul the MACHINE_CPU behaviour:kris2001-02-223-22/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk> after we pull in /etc/make.conf. We need to do it afterwards so we can react to the user setting of the: * CPUTYPE variable, which contains the CPU type which the user wants to optimize for. For example, if you want your binaries to only run on an i686-class machine (or higher), set this to i686. If you want to support running binaries on a variety of CPU generations, set this to the lowest common denominator. Supported values are listed in make.conf. * bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the (hopefully) correct unordered list of CPU types which should be used on that CPU. For example, an AMD k6 CPU wants any of the following: k6 k5 i586 i486 i386 This is still an unordered list so the client makefile logic is simple - client makefiles need to test for the various elements of the set in decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before. The various MACHINE_CPU lists are believed to be correct, but should be checked. * If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release builders and developers of third-party software need to make sure not to enable CPU-specific optimization when generating code intended to be portable. We probably need to move to an /etc/world.conf to allow the optimization stuff to be applied separately to world/kernel and external compilations, but it's not any worse a problem than it was before. * Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE. * Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc (only i386, alpha and ia64 first, since those are the minimally-working ports. Other architecture porters, please feel free to add the relevant gunk for your platform). Reviewed by: jhb, obrien
* Added upcoming FreeBSD 4.3wosch2001-02-221-3/+6
|
* Add quota.user(5) and quota.group(5) man pages.nik2001-02-222-1/+52
| | | | PR: docs/25124
* Document that the IPFW messages are logged via syslogd(8).ru2001-02-221-10/+18
|
* Add a new make knob, SENDMAIL_MC, which is meant to replace SENDMAIL_CF asgshapiro2001-02-222-0/+16
| | | | | | | | | users should be configuring via m4 now. If set, use m4 to create the .cf file. Also, if either SENDMAIL_MC or SENDMAIL_CF is set, 'make install' or 'make distribution' in src/etc/sendmail/ will install the appropriate .cf as /etc/mail/sendmail.cf. This fixes some mergemaster problems. PR: conf/13016
* Expandben2001-02-211-1/+2
| | | | | | | | | | if ((foo = bar()) != 0) to foo = bar(); if (foo != 0) Submitted by: phk
* Don't suggestben2001-02-211-1/+1
| | | | | | | | | if (error = function(a1, a2)) since it causes a warning with -Wall. Change it so it has an explicit test against zero, if ((error = function(a1, a2)) != 0)
* These pages are not i386-specific.ru2001-02-207-7/+7
|
* Remove the MD part from the document title.ru2001-02-2012-12/+12
| | | | Forgotten by: obrien
* Typo fixes: prefered -> preferredkris2001-02-202-2/+2
| | | | There are some others in contributed/external code I haven't touched.
* Turns out we do need to do bootstrapping of MACHINE_CPU here: make(1) won'tkris2001-02-201-0/+10
| | | | | | | set the variable until you rebuild it, and the alternative is to be stuck playing games with ``.if defined(MACHINE_CPU) && ... '' for all eternity. We now set up the reasonable default for i386 and alpha here -- given this it probably makes sense to remove the corresponding code from make(1).
* Remove bogus setting of MACHINE_CPU here. There is no need for it.kris2001-02-191-3/+1
| | | | Submitted by: bde
* Cosmetic and spelling fixes. Includes some MDOC policework.markm2001-02-191-6/+6
| | | | Submitted by: ru (mostly)
* add LC_MONETARY, LC_MESSAGES and LC_NUMERIC definitions for ru_RU.CP866 andphantom2001-02-1912-0/+192
| | | | ru_RU.ISO_8859-5 locales
OpenPOWER on IntegriCloud