pkgsrc/audio/libcanberra/patches/patch-aa
adam 923a82c822 Changes 0.26:
* Gtk+ 3.x fixes.

Changes 0.25:
* Optionally build with Gtk+ 3.x in addition to Gtk+ 2.x.

Changes 0.24:
* GTK code is now fine with GSEAL. Minor fixes in the PulseAudio backend,
  other fixes.

Changes 0.23:
* various minor fixes in the pulse and gstreamer backends as well in the Vala
  API. Support for the recently standardized Vorbis 6.1/7.1 multichannel modes.
2010-11-28 21:12:54 +00:00

13 lines
502 B
Text

$NetBSD: patch-aa,v 1.2 2010/11/28 21:12:54 adam Exp $
--- src/oss.c.orig 2010-02-19 23:39:40.000000000 +0000
+++ src/oss.c
@@ -243,7 +243,7 @@ static int open_oss(ca_context *c, struc
p = PRIVATE(c);
- if ((out->pcm = open(c->device ? c->device : "/dev/dsp", O_WRONLY | O_NONBLOCK, 0)) < 0)
+ if ((out->pcm = open(c->device ? c->device : DEVOSSAUDIO, O_WRONLY | O_NONBLOCK, 0)) < 0)
goto finish_errno;
if ((mode = fcntl(out->pcm, F_GETFL)) < 0)