Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-05-10 | Switch to using COMPILER_VERSION instead of USE_GCC3, allows for more flexible | Dale Rahn | |
complier picking, eg supporting gcc2, gcc3, and gcc4. based on diff by Marco, with fixes from espie@. ok espie@ general mumbling of approval of others. | |||
2010-05-08 | prime play buffers as soon as the device is opened, otherwise a | Alexandre Ratchov | |
midi client could start it with empty buffers, in turn hurting audio clients. | |||
2010-05-08 | Fix sign in dev_getpos(). Indeed, positive device playback latency | Alexandre Ratchov | |
is accounted as negative start position offset. | |||
2010-05-08 | don't take into account recording latency in dev_getpos(), since | Alexandre Ratchov | |
dev_sync() always discards any recorded samples | |||
2010-05-08 | sync to bsd.lv mdoc_term.c 1.117, mdoc_html.c 1.61: | Ingo Schwarze | |
fixed %T: it now correctly underlines, instead of quoting; noted by jmc@, fixed by kristaps@ | |||
2010-05-08 | merge bsd.lv rev 1.123: | Ingo Schwarze | |
sync mdoc.c's static function names with man.c | |||
2010-05-08 | handle text lines beginning with \." as comments, like groff does, | Ingo Schwarze | |
even though this is not correct comment syntax (so warn, too) reported by Claus Assmann on misc@, fix by kristaps@ | |||
2010-05-08 | sync to bsd.lv rev 1.12: | Ingo Schwarze | |
add some standards found in NetBSD's manuals | |||
2010-05-07 | tweak previous; | Jason McIntyre | |
2010-05-07 | add some optional indirection to matching of principal names listed | Damien Miller | |
in certificates. Currently, a certificate must include the a user's name to be accepted for authentication. This change adds the ability to specify a list of certificate principal names that are acceptable. When authenticating using a CA trusted through ~/.ssh/authorized_keys, this adds a new principals="name1[,name2,...]" key option. For CAs listed through sshd_config's TrustedCAKeys option, a new config option "AuthorizedPrincipalsFile" specifies a per-user file containing the list of acceptable names. If either option is absent, the current behaviour of requiring the username to appear in principals continues to apply. These options are useful for role accounts, disjoint account namespaces and "user@realm"-style naming policies in certificates. feedback and ok markus@ | |||
2010-05-07 | remove ``abspos'' counters, from the pre-libsndio era. Since play and | Alexandre Ratchov | |
rec direction use the same clock, there's no need to maintain their absolute position. | |||
2010-05-07 | Since aucat uses libsndio, play and rec clocks are the same, so | Alexandre Ratchov | |
use play and rec latencies counters to calculate the offset between play and rec direction. Greatly simplifies stream attaching code. | |||
2010-05-07 | don't prime audio buffers if the device is only started to serve | Alexandre Ratchov | |
as clock source for MIDI clients. | |||
2010-05-06 | allow volumes of uninitialized slots to be set | Alexandre Ratchov | |
2010-05-05 | Identical behaviour to select-prompt can now be obtained with | Nicholas Marriott | |
command-prompt, so remove select-prompt and change ' to be bound to command-prompt -p index "select-window -t :%%". | |||
2010-05-05 | restore mput and mget which got lost in the tab-completion changes. | Darren Tucker | |
found by Kenneth Whitaker, ok djm@ | |||
2010-05-04 | end-of-sentence markers at the end of .Fn argument lists | Ingo Schwarze | |
ruin indentation of the next line in the SYNOPSIS section; bug found by jacekm@ in err(3) | |||
2010-05-04 | make the mixer process data as soon as it's pushed by one of its | Alexandre Ratchov | |
inputs, i.e. don't way that the output requests it. | |||
2010-05-04 | if the ``device'' is in loopback mode (ie no audio device), then | Alexandre Ratchov | |
disable overruns/underruns since aucat must pause when an input or an output blocks. This is a theoretical fix, since the start/stop code is never reached in loopback mode | |||
2010-05-04 | Put this back in with the initialisation in the right order. | Nicholas Marriott | |
2010-05-04 | Revert last change, it appears to be broken somehow. | Nicholas Marriott | |
2010-05-03 | Support gcc4 with cpp (gcc4 binary to be installed in /usr/libexec/cpp). | Dale Rahn | |
ok kettenis@ | |||
2010-05-03 | Make signal handler setup/teardown two common functions instead of six, | Nicholas Marriott | |
and reset SIGCHLD after fork to fix problems with some shells. From Romain Francois. | |||
2010-05-03 | Make C-] and other punctuation-based control key combinations work again. | Ryan Thomas McBride | |
ok nicm | |||
2010-05-02 | sort options. | Igor Sobrado | |
2010-05-02 | Clean up device handling code to clarify different initialization phases | Alexandre Ratchov | |
and different device states. Split initialization in two phases: first global variables are initialized then the audio hardware is opened. Allow devices that don't support full-duplex to work in play-only or record-only mode, even if ``-m play'' or ``-m rec'' are not specified. | |||
2010-05-02 | Don't systematically fill with silence the mixer output. This | Alexandre Ratchov | |
might result in extra samples being written to the device when the mixer is closed. | |||
2010-05-02 | use clock_gettime() and interval timers instead of gettimeofday() | Alexandre Ratchov | |
and poll()'s timeout. Simpler and more accurate, from midish | |||
2010-05-02 | in the resampling code, handle the case ``diff == 0'', to avoid producing | Alexandre Ratchov | |
the first sample of the next block in advance. | |||
2010-05-01 | typo; jmeltzer@ | Damien Miller | |
2010-04-30 | shuffle some things around to deal with incomplete types | Jonathan Gray | |
gcc4 gets upset about. based on suggestions from miod@, ok millert@ | |||
2010-04-28 | Make the active pane border have a green foreground instead of | Nicholas Marriott | |
background by default. | |||
2010-04-28 | Rename nfiles so as not to collide with sys/file.h, | Jonathan Gray | |
makes gcc4 happy. ok deraadt@ miod@ | |||
2010-04-28 | shuffle extern decl of header[] so gcc4 doesn't complain about | Jonathan Gray | |
incomplete types. ok deraadt@ 'Looks acceptable' miod@ | |||
2010-04-28 | Fix crash when resizing in copy mode, when cursor can end up outside screen. | Nicholas Marriott | |
Reported by Romain Francois, fixed by Micah Cowan. | |||
2010-04-27 | Fix a subtle bug noticed by naddy@ in pftop(8), thanks! | Ingo Schwarze | |
When converting blank lines to .Pp outside literal context, it could happen that the following node ended up as a child of the .Pp element, but it must always be a sibling. | |||
2010-04-27 | imsg.h does not need sys/tree.h. | Nicholas Marriott | |
ok eric | |||
2010-04-26 | bz#1502: authctxt.success is declared as an int, but passed by | Damien Miller | |
reference to function that accepts sig_atomic_t*. Convert it to the latter; ok markus@ dtucker@ | |||
2010-04-26 | Fix a bug in auto-completion accidentally introduced when support | Stefan Sperling | |
for auto-completion of filenames containing whitespace was added. This bug was tracked a decade ago in NetBSD as pr 7014. ok deraadt | |||
2010-04-26 | more portable code | Theo de Raadt | |
2010-04-25 | Add a tiled layout, originally from Liam Bedford a while ago, fixed up | Nicholas Marriott | |
by me. | |||
2010-04-25 | Implement roff conditional instructions .if .ie .el, in man(7) only for now; | Ingo Schwarze | |
fixing OpenBSD::PackageName(3p) and friends for espie@. | |||
2010-04-25 | ftpvis was not ok. fix it. | Ted Unangst | |
2010-04-25 | prevent out-of-bounds access with empty pattern (fixes "grep -x ''") | Eric Faurot | |
ok millert@ krw@ | |||
2010-04-25 | pure whitespace cleanup | Marc Espie | |
2010-04-25 | Fix auto-completion of filenames containing whitespace. | Stefan Sperling | |
Before this change whitespace wasn't escaped during completion which caused the ftp command to see multiple arguments where a single path was expected. Based on similar commit made to NetBSD's ftp in 1999. help and ok uwe tedu deraadt | |||
2010-04-24 | delete two extra ; that got inserted somewhere along the line | Theo de Raadt | |
2010-04-24 | if there are no files to play in legacy mode, print the usage message | Alexandre Ratchov | |
2010-04-24 | don't increment mixer's ``idle'' counter before truncating the | Alexandre Ratchov | |
amount of samples to commit to ``maxwrite''. Overwise uncommitted samples are accounted as idle, in turn causing the device to be stopped too early, possibly truncating few blocks at the end of streams being drained. subtle bug spotted and analysed by Thomas Pfaff, thanks | |||
2010-04-24 | rename ibuflist/obuflist -> ins/outs to cut long lines | Alexandre Ratchov | |
from Thomas Pfaff, thanks |