patch-ah (new):
Fix wrong placed #else clause against #if defined(__linux__) in cpu-arm.c.
patch-ba:
Check NetBSD's native atomic_ops in configure even in arm case.
configure checks $host_cpu first, not $host_os on checks for
native atomic operations.
(In upstream it seems fixed to see $host_os first but
it might still have problem around NetBSD version checks)
Shared directories can now be created independently by the pacakges
needing them and will be removed automatically by pkg_delete when empty.
Packages needing empty directories can use the @pkgdir command in PLIST.
Discussed and ok'd in thread starting at
http://mail-index.netbsd.org/tech-pkg/2009/06/30/msg003546.html
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.
Colin Guthrie (2):
Fix a potential C++/C99 ism, add a log message on error condition
Fix two typos that broke tunnels
Lennart Poettering (46):
Initialize exit_idle_time to -1 instead of 0 when in system mode.
instead of resetting virtual_volume unconditionally on initialization, do so only when no volume was set before
use pa_channel_map_init_extend() instead of pa_channel_map_init_auto() as channel map for sink inputs/source outputs in case no map is specified
if the channel map was modified due to PA_SINK_INPUT_FIX_CHANNELS, remap the specified volume properly
define 0dB in PA as maximum amplification
properly remove dbus matches an filters when unloading m-b-d
always check for libtool prefix binary name to avoid confusion when using both installed and run-from-build-tree versions of PA in parallel
Fix spelling of privilige
Make missing git-changelog.perl non-fatal
fix invalid validity check
convert argument to boolean int in PA_UNLIKELY, too
include log.h near the end so that macro.h can be included in log.h and defines pa_bool_t properly
Try to catch certain driver errors
make the debug trap macro a proper macro in macro.h
don't set the volume of pacat unless it is explicitly set
warn if ALSA wakes us up and there is actually nothing to do
fix build
make sure to use 64bit rounding even on 32bit machines when converting to pa_usec_t
make shm marker architecture independant, patch from michich, closes#401
Make sure libpulse never gets unloaded
Check if environ is actually set before we use it
Fix return value of --dump-resample-methods
Don't mix front-center into rear channels
Pass GDBM_NOLOCK to gdbm
Load module-volume-restore and module-device-restore before all other modules
introduce new function pa_module_unload_request_by_index
Don't store pointer to pa_module
actually unload the modules from a new stack frame
unload tunnel modules from a new stack frame
it's better to always use the index of a module instead of the pa_module*
downgrade a few warnings
Make sure we drop CAP_NICE if RT is not allowed
Allow access("/dev/dsp", W_OK) succeed
Use FIONREAD instead of TIOCINQ
Implement PA_SOURCE_MESSAGE_GET_LATENCY
make sure we don't hit an assert when we issue two rewind requests in a
If we cannot open an ALSA device with SND_PCM_NO_AUTO_FORMAT retry without
fix a gcc warning
Rework handling of the PA_SINK_LATENCY/PA_SOURCE_LATENCY flags
A few minor cleanups and updates
add a few missing parens
show maximum usable slot size
Make sure we don't drop any data on the client side
for record streams fill in the latency as the fragsize
Fix suspending of all sinks/sources
bump version/soname
Luiz Augusto von Dentz (7):
Unload module-bluetooth-device if the remote device disconnects.
Fix possible invalid read while attempting to load module-bluetooth-device.
Fix bug walking on module list.
Update module-bluetooth-device to the new ipc.
Send packets with proper size.
Fix send and recv message sizes.
Fix sending wrong codec capability length.
Sean McNamara (1):
--check: Updated manpage slightly and pulseaudio --help slightly.
Tom Bamford (1):
Multicast SDP packets sent with same IP TTL as RTP packets
chocolateboy (1):
Fix typo in log message: s/Recevied/Received/
won't be available, and the previous version of this patch would not allow
successful building.
Change the code (in the OSS module) to check for a defined AUDIO_GETBUFINFO
under NetBSD. If it isn't available, indicate that the system has no
mechanism available.
(May compromise on audio synchronisation on local OSS devices)
Ok jmcneill@
go one operating system further.
Old patch-ac disabled the guts of tests/rtstutter.c for all but Linux. But it
isn't that portable on Linux either as it stands, and errors out (on EeePC) at
link time with:
rtstutter.c:(.text+0xbd): undefined reference to `pthread_setaffinity_np'
Just bring Linux in line with other platforms by changing the #ifdef __linux__
to #if 0.
Doesn't deserve a revision bump.