Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-07-05 | Remove usr.bin/strip and usr.bin/strings, no longer built. | Miod Vallat | |
2013-07-05 | Remove usr.bin/ar and usr.bin/ranlib, no longer building anything. Move their | Miod Vallat | |
manpages to share/man5 since they are still worth keeping. | |||
2013-07-05 | More a.out files leave the party. | Miod Vallat | |
2013-07-05 | ELF_TOOLCHAIN bye bye. | Miod Vallat | |
2013-07-05 | Add pane_synchronized format, from Romain Francoise. | Nicholas Marriott | |
2013-07-05 | Clarify error messages when setting options, from Thomas Adam. | Nicholas Marriott | |
2013-07-05 | When the session option renumber-window is used, ensure we iterate over | Nicholas Marriott | |
all sessions in that group when the winlinks are reordered, otherwise the winlink lists are out of sync with one another. From Thomas Adam. | |||
2013-07-05 | Whitespace nits, from Ben Boeckel. | Nicholas Marriott | |
2013-07-05 | Act like vi(1) when moving words, from Ben Boeckel. | Nicholas Marriott | |
2013-07-05 | Implement s, S, C mode switch commands in vi(1) mode, from Ben Boeckel. | Nicholas Marriott | |
2013-07-04 | add some missing prototypes; ok guenther@ | Otto Moerbeek | |
2013-07-03 | For consistency, move the functions that aren't generated at build-time | Philip Guenther | |
from mksubr to kdump.c ok otto@ millert@ | |||
2013-07-03 | Use WAIT_* for the first argument to wait4(), and otherwise treat it (and | Philip Guenther | |
the first argument to kill) as signed 32bit ints. ok millert@ otto@ | |||
2013-07-02 | add missing library dependencies | Markus Friedl | |
2013-07-02 | remove extra whitespace | Markus Friedl | |
2013-07-01 | Make some variables const that are filled from getenv(3), from argv, | Ingo Schwarze | |
from optarg and from literal strings - for clarity and to make sure that future code changes do not attempt to write to them. No functional change. ok jca@ | |||
2013-07-01 | Tweak regexp so that RUSAGE_CHILDREN will be matched and displayed | Philip Guenther | |
2013-07-01 | Kill off some code that undocumently added an "-s" switch if user had | Jeremie Courreges-Anglas | |
specified "more" as (MAN)PAGER. Document the default pager used while here. Discussed with schwarze@, ok schwarze@ millert@, jasper@ agrees. Users can get the previous behaviour by specifying eg. export MANPAGER="more -s". | |||
2013-07-01 | Add the necessary -I options to use the libedit readline compatibilty headers | Mark Kettenis | |
instead of the GNU versions. While there, use CPPFLAGS to add -I options as they are preprocessor options. ok mikeb@, mpi@ | |||
2013-07-01 | Link sqlite3(1) against libedit and add an empty history.h header for | Martin Pieuchot | |
compatibility with GNU realine. ok mikeb@, sthen@, espie@ | |||
2013-07-01 | update currency exchange rates; | Jason McIntyre | |
2013-07-01 | update list of locales after adding Turkish. | Federico G. Schwindt | |
requested and ok stsp@ | |||
2013-06-29 | do not use Sx for sections outwith the page; | Jason McIntyre | |
man4 still to go... | |||
2013-06-27 | do not use Sx for sections outwith the man page - ingo informs me that | Jason McIntyre | |
stuff like html will render with broken links; issue reported by Eric S. Raymond, via djm | |||
2013-06-27 | Parse for the closing delimiter `\}' for conditionals | Ingo Schwarze | |
even when the conditional evaluated to false. While here, reshuffle the code to reduce indentation and make it more readable; that way, we can even trim down the comments because it becomes obvious what the code does. Found in zipinfo(1) - thanks to espie@ and naddy@ for making me look at that manual page. | |||
2013-06-26 | Avoid mangling argv and environment variables. | Jeremie Courreges-Anglas | |
ok schwarze@ sthen@ | |||
2013-06-24 | tweak previous; | Jason McIntyre | |
2013-06-24 | do not use literal displays when the display contains mark up; | Jason McIntyre | |
2013-06-23 | Stop using deprecated functions from Kerberos. | Antoine Jacoutot | |
input from and ok millert@ | |||
2013-06-23 | Focus events can cause trouble if left on and they can't be turned off | Nicholas Marriott | |
during idle periods (like the other states are) because we'd miss events. So add a server option to control them. Defaults to off. | |||
2013-06-23 | Always push a focus event when the application turns it on, prompted by | Nicholas Marriott | |
discussion with Hayaki Saito a while ago. | |||
2013-06-23 | Mark control commands specially so the client can identify them, based | Nicholas Marriott | |
on a diff from George Nachman a while back. | |||
2013-06-22 | Tweak optimization flags on landisk until I have time to investigate further. | Miod Vallat | |
2013-06-22 | improved time_t overflow check suggested by guenther@ | Damien Miller | |
2013-06-21 | Stop using deprecated Kerberos functions. | Antoine Jacoutot | |
ok millert@ | |||
2013-06-21 | Default to stdin/stdout if no input files are | Jonathan Gray | |
given to indent. Based on FreeBSD svn rev 40502. ok kettenis@ millert@ lteo@ | |||
2013-06-21 | make this -Wsign-compare clean after time_t conversion | Damien Miller | |
2013-06-21 | sprinkle in some error() to explain moduli(5) parse failures | Damien Miller | |
2013-06-21 | explicitly mention that IdentitiesOnly can be used with IdentityFile | Damien Miller | |
to control which keys are offered from an agent. | |||
2013-06-21 | for hostbased authentication, print the client host and user on | Damien Miller | |
the auth success/failure line; bz#2064, ok dtucker@ | |||
2013-06-20 | Improve handling of the roff(7) "\t" escape sequence: | Ingo Schwarze | |
* Parsing macro arguments has to be done in copy mode, which implies replacing "\t" by a literal tab character. * Otherwise, render "\t" as the empty string, not as a 't' character. This fixes formatting of the distfile example in the oldrdist(1) manual. This also shows up in the unzip(1) manual as one of several issues preventing the removal of USE_GROFF from the archivers/unzip port. Thanks to espie@ for attracting my attention to the unzip(1) manual. | |||
2013-06-20 | fix typo | Marc Espie | |
thx Caspar Schutijser | |||
2013-06-20 | don't leak the rdata blob on errors; ok djm@ | Markus Friedl | |
2013-06-20 | add ut/nut flags to indent to enable/disable tabs. | Jonathan Gray | |
based on FreeBSD svn rev 131184. ok deraadt@ | |||
2013-06-19 | don't link to hx509, pthread and ntlm related libraries | Robert Nagy | |
2013-06-19 | stop doing kerberos in ssh and sshd | Theo de Raadt | |
the code bloat makes that no longer trustworthy functionality ok guenther | |||
2013-06-18 | Shuffle library link order to appease the static arch deities. | Miod Vallat | |
2013-06-18 | make sure the target directory gets created in the includes target | Robert Nagy | |
and add a trailing / as well to avoid problems | |||
2013-06-17 | link to the new kerberos libraries | Robert Nagy | |
2013-06-17 | remove asn1_compile and compile_et from usr.bin because they | Robert Nagy | |
have found a new home in src/kerberosV/tools |