summaryrefslogtreecommitdiff
path: root/share
AgeCommit message (Collapse)Author
2010-08-01The explanations of the HISTORY and AUTHORS sections were nicerIngo Schwarze
in the old mdoc(7) manual than in the new one, so put them back. While here, fix the .Os synopsis and add two more .Xrs. Do the same in man(7), as far as it is applicable. ok jmc@
2010-08-01Move the new mdoc(7) manual written by kristaps@, replacing the old oneIngo Schwarze
which had much less information, such that the new one gets installed. No change to the build system required, no text change in this commit. Doing the big move early even though a few more improvements will follow. The duplicate information in mdoc.samples(7) will be cleaned up post-release. ok jmc@, and kristaps@ agreed with the plan, too
2010-08-01document the rw_assert_ functionsBret Lambert
ok jmc@
2010-07-31document .in; from kristaps@Ingo Schwarze
2010-07-31zap a comma; from Joachim SchipperJason McIntyre
2010-07-31mention M-Audio Audiophile 192kAlexandre Ratchov
2010-07-31grammar fix;Jason McIntyre
2010-07-31remove the ``midisyn'' framework and anything using it, i.e., the oplAlexandre Ratchov
device and the midi interface to pcppi.
2010-07-30Mention the horde port module. Not documented yet.Stuart Henderson
2010-07-30Add "-S" to library installs to avoid breakage when oneChris Kuethe
"make -j8 build" job is installing libc and another job is expecting to use libc (for example). ok phessler
2010-07-29change URLs to point to the more recent porter's handbook;Steven Mestdagh
mention the use of packages first. ok sthen@
2010-07-29Add some more devices. -mojMats O Jansson
2010-07-27Replace the single-byte placeholders for the multi-byte/wide-characterStefan Sperling
conversion interfaces of libc (mbrtowc(3) and friends) with new implementations that internally call an API based on NetBSD's citrus. This allows us to support locales with multi-byte character encodings. Provide two implementations of the citrus-based API: one based on the old single-byte placeholders for use with our existing single-byte character locales (C, ISO8859-*, KOI8, CP1251, etc.), and one that provides support for UTF-8 encoded characters (code based on FreeBSD's implementation). Install the en_US.UTF-8 ctype locale support file, and allow the UTF-8 ctype locale to be enabled via setlocale(3) (export LC_CTYPE='en_US.UTF-8'). A lot of programs, especially from ports, will now start using UTF-8 if the UTF-8 locale is enabled. Use at your own risk, and please report any breakage. Note that ncurses-based programs cannot display UTF-8 right now, this is being worked on. To prevent install media growth, add vfprintf(3) and mbrtowc(3) to libstubs. The mbrtowc stub was copied unchanged from its old single-byte placeholder. vfprintf.c doesn't need to be copied, just put in .PATH (hint by fgsch@). Testing by myself, naddy, sthen, nicm, espie, armani, Dmitrij D. Czarkoff. ok matthieu espie millert sthen nicm deraadt
2010-07-26recording/full-duplex supportJacob Meuser
ok kettenis
2010-07-26various small fixes; kristaps has committed this upstream alreadyJason McIntyre
ok schwarze
2010-07-26simplify the mixer(4) code and interface. document the interface.Jacob Meuser
ok kettenis
2010-07-26sync description of acpisony w/ man page;Jason McIntyre
2010-07-26last item of SEE ALSO should not have a comma;Jason McIntyre
2010-07-26Xr acpisony, and make the name betterTheo de Raadt
2010-07-26Add support for Sony ACPI hotkeys via a new driver: acpisony(4).Paul Irofti
Currently it only works for the suspend button and tries to do right for the brightness events, but I haven't found a Sony laptop that like to do right so far. In the future I want to make the brightness keys work on all Sony's and also add support for the zoom hotkeys and whatever other funky keys I can find on those things. Okay deraadt@.
2010-07-24Mention that acpidock(4) sets up a sensor and that it can be used withMichael Knudsen
sensorsd to do actions when docking or undocking. ok jordan
2010-07-24move to 4.8-betaTheo de Raadt
2010-07-22- Fix wrong ioctl structure documentation for VIDIOC_QUERYBUF, VIDIOC_QBUF,Marcus Glocker
and VIDIOC_DQBUF. - Also document the VIDIOC_QUERYBUF part for the MMAP interface.
2010-07-22Add a comment about MODPY_BUILDDEP and NO_BUILD in the python section.Antoine Jacoutot
2010-07-22various macro cleanup;Jason McIntyre
2010-07-22ukc xr should be boot_config;Jason McIntyre
2010-07-22syncTheo de Raadt
2010-07-21urndis supports the HTC Wildfire just fine. Tested here.Edd Barrett
OK mk@
2010-07-21Disable the heuristics for legacy free systems if pckbc flags are set to 1Miod Vallat
in UKC; found the hard way by jakemsr@ on an old Tecra laptop.
2010-07-21document fortran moduleSteven Mestdagh
2010-07-21reverse logic in previousSteven Mestdagh
2010-07-21update gcc3 and gcc4 modules with COMPILER_VERSION instead of USE_GCC[34]Steven Mestdagh
2010-07-20disconnect groff_man(7) from the build and install man(7) instead;Ingo Schwarze
"fine" jmc@ "no worries" deraadt@ "looks good" J.C. Roberts
2010-07-19merge from bsd.lv (minor improvements by kristaps@)Ingo Schwarze
* remove \s documentation, we do not support it and don't plan to * note that we parse and ignore \m, \M, and \s escapes * fix two broken instances of \*q * we do not use empty macro lines before .SH headers
2010-07-19* briefly mention the HISTORY of the man(7) languageIngo Schwarze
* update the copyright notice * improve the wording in a few places * fix a couple of typos including two suggestions from J.C. Roberts feedback and ok jmc@, ok sobrado@ and kristaps@
2010-07-19J. C. Roberts noted that Kristaps' man.7 is already better than theIngo Schwarze
old groff_man.7 we currently install. As a first step, move the new manual where it belongs, not changing any content except the OpenBSD marker. The plan is, after some polishing, to install man.7 and not install groff_man.7 any longer. jmc@, sobrado@ and kristaps@ agree
2010-07-19Another name for an already supported device. -mojMats O Jansson
2010-07-19Document the recently introduced select(2) / poll(2) support for video(4).Marcus Glocker
2010-07-19Update to upstream from ncurses-5.7-20100717. Fixes rs1 in wsvt25 and aNicholas Marriott
few other bits and pieces. ok millert
2010-07-18packages-specs man page is section 7, not 5;Jason McIntyre
2010-07-18document OPSYS and OPSYS_VER as obsolete, mention OSREV; ok espie@Christian Weisgerber
2010-07-18- grammar fix from Glen Barber (freebsd pr 148701)Jason McIntyre
- fix some list issues found by mandoc
2010-07-15sync the elf types and their comments; ok millertJason McIntyre
2010-07-15document the missing "note section";Jason McIntyre
reported by Michael Kerrisk, freebsd pr 147995 big thanks to miod and millert for filling in the blanks
2010-07-15add two new members to structs audio_encoding and audio_prinfo.Jacob Meuser
for both structs, the new members are 'bps' and 'msb', which describe the number of bytes per sample and data alignment in the sample, respectively. drivers must properly set these fields in the 'query_encoding', 'set_parameters' and 'get_default_params' hardware interface methods. discussed with ratchov, deraadt
2010-07-14Eliminate some unused malloc(9) type defines. Also get rid of theMatthew Dempsky
mysterious and unused mbtypes[] array in mbuf.h. ok tedu@, deraadt@
2010-07-12document gcc4; requested by bradJason McIntyre
2010-07-11sort SEE ALSO;Jason McIntyre
2010-07-11tie back to bsd.port.mk, to make REVISION and EPOCH more obvious.Marc Espie
2010-07-11thinko (found by Daniel Dickman)Marc Espie