summaryrefslogtreecommitdiffstats
path: root/share
Commit message (Collapse)AuthorAgeFilesLines
* Document the WORMIOCFIRSTWRITABLEADDR ioctl.jmz1998-03-311-1/+19
|
* fkey61 is the same thing as del, kinda. Make sure that we really swap del andimp1998-03-301-2/+2
| | | | | | bs. Reported by: Chuck Robey
* Support for fine-grained external control of subdir building.eivind1998-03-291-12/+38
|
* Finish _POSIX_PRIORITY_SCHEDULING. Needs P1003_1B anddufault1998-03-282-46/+43
| | | | | | | | | | | | | | | | _KPOSIX_PRIORITY_SCHEDULING options to work. Changes: Change all "posix4" to "p1003_1b". Misnamed files are left as "posix4" until I'm told if I can simply delete them and add new ones; Add _POSIX_PRIORITY_SCHEDULING system calls for FreeBSD and Linux; Add man pages for _POSIX_PRIORITY_SCHEDULING system calls; Add options to LINT; Minor fixes to P1003_1B code during testing.
* Add us.unix.kbd. Just like us.iso.kbd except:imp1998-03-283-3/+120
| | | | | | | | | | | | | ESCAPE and `~ are swapped CTRL and CAPS LOCK are swapped BACKSPACE and DELETE are swapped Suitable for keymap=us.unix in your rc.conf file or for setting on the fly with kbdcontrol -l us.unix. This is the keyboard layout of many of the more traditional unix workstations and terminals that have been around for a very long time. Older Sun keyboards and VT100's had a layout very similar to the PC, with the above exceptions. Idea Reviewed by: Many people in -hackers
* Remove special handling of 'tags' for complex subdir systemseivind1998-03-261-26/+4
| | | | | | (presently only used in tip; should have been used by e.g. pkg_add). Submitted by: bde
* Don't build sperl if you don't want to.dima1998-03-261-1/+3
|
* Don't delete "Latest" link if NO_LATEST_LINK is set.asami1998-03-241-2/+5
|
* Updates for the new si driver.peter1998-03-232-96/+110
| | | | Obtained from: Nick Sayer <nick@specialix.com>, and tweaks by me.
* Support new version of global.eivind1998-03-234-15/+15
| | | | | Submitted by: Shigio Yamaguchi <shigio@wafu.netgate.net> Tested by: make buildworld
* Fixed a function arg type in the synopsis.bde1998-03-231-1/+1
|
* Use gzip's -n flag so that simple regression tests of `make world'bde1998-03-191-3/+3
| | | | work better.
* Fixed CLEANFILES. Some temporary files were missing.bde1998-03-191-2/+2
|
* style tweak.jkh1998-03-181-2/+2
|
* Document NOPERLjkh1998-03-181-1/+4
|
* Improved comparison of ${DPADD} with ${LDADD} for the checkdpadd target.bde1998-03-141-6/+10
| | | | | | `BINFORMAT=foo make checkdpadd' in /usr/src now reports only 2 false negatives (in libss and init). (BINFORMAT=foo is to turn off better handling of the a.out case.)
* Introduce the 'regress' target.eivind1998-03-126-7/+29
| | | | Silently approved by: -hackers, -current
* .Sh AUTHOR -> .Sh AUTHORS according to mdoc specs.charnier1998-03-12127-437/+571
| | | | Use .An/.Aq.
* Add man page for the bktr driver.jkh1998-03-093-2/+164
| | | | | PR: 5954 Submitted by: wlloyd@mpd.ca (with tweaks from reviewer)
* Document rarpd flags.jkh1998-03-091-5/+19
|
* Typo fixes.jkh1998-03-091-4/+4
| | | | | PR: 5951 Submitted by: Doug <Studded@dal.net>
* Reviewed by: bdedufault1998-03-081-27/+40
| | | | | | | | | | | | | | | | | | | | | | | Changes to support building with _POSIX_SOURCE set to 199309L: 1. Add sys/_posix.h to handle those preprocessor defs that POSIX says have effects when defined before including any header files; 2. Change POSIX4_VISIBLE back to _POSIX4_VISIBLE 3. Add _POSIX4_VISIBLE_HISTORICALLY for pre-existing BSD features now defined in POSIX. These show up when: _POSIX_SOURCE and _POSIX_C_SOURCE are not set or _POSIX_C_SOURCE is set >= 199309L and vanish when: _POSIX_SOURCE is set or _POSIX_C_SOURCE is < 199309L. 4. Explain these in man 9 posix4; 5. Include _posix.h and conditionalize on new feature test.
* Revert previous commit. Despite the names, these files containjraynard1998-03-072-2/+2
| | | | troff input, not C source.
* Pass -nostdinc to mkdep for assembler and C files (it was alreadybde1998-03-071-16/+15
| | | | | | | | passed for C++ files). Don't pass -nostdlib to mkdep for C++ files. Don't use temporary variables to obfuscate the main rule.
* Fixed generation of extra dependencies:bde1998-03-071-6/+3
| | | | | | | - the two `_EXTRADEPEND::' targets potentially clobbered each other for `make -jN'. In practice, the output for the second target sometimes disappeared. - bogus dependencies were generated for static libraries.
* Reverted part of previous change and improved formatting. Switchingbde1998-03-071-4/+4
| | | | | from `?=' to `=' for BINDIR was a mistake. Sub-makefiles may need to set BINDIR.
* Documented moused flags.jkh1998-03-071-7/+16
| | | | Submitted by: Kazutaka YOKOTA <yokota@zodiac.mech.utsunomiya-u.ac.jp>
* Add ${CXX} to list of variables passed in the environment whenasami1998-03-071-2/+3
| | | | | | invoking configure. Submitted by: obrien
* MF22: add ports-biologyjkh1998-03-062-2/+4
|
* Fix fprintf() here too.jkh1998-03-061-1/+1
|
* \e should have been \n (don't know when this was broken).jkh1998-03-061-1/+1
|
* If .depend doesn exist, then pretend that all objects depend on allbde1998-03-061-1/+6
| | | | | | headers in ${SRCS}, as in bsd.lmod.mk and bsd.prog.mk. This helps `make [-j]' work when .depend doesn't exist. Even plain `make' sometimes only worked because of magic ordering in ${SRCS}.
* Removed support for now-unused FreeBSD misfeature DPSRCS.bde1998-03-062-6/+4
|
* Fixed dependency of ${PROG} on ${DPSRCS}. There were various racesbde1998-03-061-3/+8
| | | | | for `make -j'. There are one-off fixes for the problem in a few Makefiles, e.g., amd/amq/Makefile.
* Fixed dependencies of ${PROG} on ${DPSRCS} and `all' on ${_ILINKS}.bde1998-03-061-6/+9
| | | | | | | There were various races for `make -j'. Half-built versions of vnode_if.h were sometimes #included... Removed a null dependency.
* Reviewed by: msmith, bde long agodufault1998-03-042-2/+121
| | | | | POSIX.4 headers and sysctl variables. Nothing should change unless POSIX4 is defined or _POSIX_VERSION is set to 199309.
* syntax error in /usr/share/examples/sliplogin/slip.hostsjkh1998-03-021-1/+1
| | | | | PR: 5873 Submitted by: Ruslan Ermilov <ru@ucb.crimea.ua>
* Make it possible to indicate that we don't care about the remotephk1998-02-281-1/+9
| | | | sides IP address, as long as it isn't 0.0.0.0
* Fix a few typos.jraynard1998-02-282-4/+4
|
* Strings are terminated by NUL, not NULL.jraynard1998-02-281-2/+2
|
* Update to reflect reality. We do support the WANic 400/405 PCI cards.jhay1998-02-281-13/+8
| | | | Fix some typos and clean it up a little.
* Convert ${MASTER_SITE_SUBDIR} to %SUBDIR% as in bsd.port.mk rev 1.257fenner1998-02-271-7/+7
|
* Fix path in commented-out sample of MASTER_SITE_TEX_CTAN.asami1998-02-271-2/+2
| | | | | PR: 5861 Submitted by: kuriyama@opt.phys.waseda.ac.jp
* Update man page to reflect reality.jkh1998-02-261-20/+66
| | | | | PR: 5828 Submitted by: Stephen J. Roznowski <sjr@home.net>
* isofs -> cd9660jkh1998-02-261-2/+2
| | | | | PR: 5849 Submitted by: Benjamin Lewis <bhlewis@gte.net>
* Removed clean target. Simply add to CLEANFILES so that the default targetbde1998-02-251-10/+2
| | | | in bsd.obj.mk works.
* Remove ${CLEANDIRS} in the default clean rule, so that bsd.prog.mk canbde1998-02-251-3/+8
| | | | | | | use the default without losing any (currently unused) features. (CLEANDIRS is only used by for libgmp and libmp via bsd.lib.mk, and only documented everywhere it is supported except of course where it is actually used.)
* Don't add ${DOC}.ascii* to CLEANFILES twice.bde1998-02-251-5/+5
|
* Update to sort of match reality by literally including <sys/dirent.h>bde1998-02-241-58/+46
| | | | | | instead of a pre-BSD4.4 version of <dirent.h>. The old version had library goop which is still in <dirent.h>. See reality if you want real details.
* Update to match reality again.bde1998-02-241-31/+56
|
OpenPOWER on IntegriCloud