Package: mozilla-browser
Version: 2:1.7.12-1.1
Severity: wishlist
Tags: patch
Attached is the patch against /usr/bin/mozilla-suite adding the audiooss
DSP wrapper support. audiooss is the DSP wrapper for nas - Network Audio
System.
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (800, 'testing'), (700, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/dash
Kernel: Linux 2.6.15-1-686
Locale: LANG=C, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Versions of packages mozilla-browser depends on:
ii debconf 1.4.72 Debian configuration management sy
ii libatk1.0-0 1.11.3-1 The ATK accessibility toolkit
ii libc6 2.3.6-3 GNU C Library: Shared libraries an
ii libcairo2 1.0.2-3 The Cairo 2D vector graphics libra
ii libfontconfig1 2.3.2-1.1 generic font configuration library
ii libgcc1 1:4.1.0-1 GCC support library
ii libglib2.0-0 2.10.1-2 The GLib library of C routines
ii libgtk2.0-0 2.8.16-1 The GTK+ graphical user interface
ii libkrb53 1.4.3-6 MIT Kerberos runtime libraries
ii libnspr4 2:1.7.12-1.1 Netscape Portable Runtime Library
ii libpango1.0-0 1.12.0-2 Layout and rendering of internatio
ii libstdc++6 4.1.0-1 The GNU Standard C++ Library v3
ii libx11-6 6.9.0.dfsg.1-6 X Window System protocol client li
ii libxcursor1 1.1.3-1 X cursor management library
ii libxext6 6.9.0.dfsg.1-6 X Window System miscellaneous exte
ii libxft2 2.1.8.2-5.1 FreeType-based font drawing librar
ii libxi6 6.9.0.dfsg.1-6 X Window System Input extension li
ii libxinerama1 6.9.0.dfsg.1-6 X Window System multi-head display
ii libxp6 6.9.0.dfsg.1-6 X Window System printing extension
ii libxrandr2 6.9.0.dfsg.1-6 X Window System Resize, Rotate and
ii libxrender1 1:0.9.0.2-1 X Rendering Extension client libra
ii libxt6 6.9.0.dfsg.1-6 X Toolkit Intrinsics
ii psmisc 22.2-1 Utilities that use the proc filesy
Versions of packages mozilla-browser recommends:
ii mozilla-psm 2:1.7.12-1.1 The Mozilla Internet application s
pn myspell-en-us | myspell-dic <none> (no description available)
-- debconf information:
* mozilla/dsp: auto
* mozilla/locale_auto: true
* mozilla/prefs_note:
--- /usr/bin/mozilla-suite 2006-02-06 01:20:09.000000000 +0600
+++ mozilla 2006-04-18 00:04:12.000000000 +0700
@@ -64,6 +64,14 @@
MOZILLA_LOCALE_AUTO="true"
fi
+if [ "$MOZILLA_DSP" = "auto" -a "x$AUDIOSERVER" != "x" ]; then
+ # do not prevent using other wrappers if $AUDIOSERVER was set up
+ # unintentionally or audiooss is not available.
+ if type audiooss > /dev/null 2>&1; then
+ MOZILLA_DSP="audiooss"
+ fi
+fi
+
if [ "$MOZILLA_DSP" = "auto" -a -e /dev/dsp ]; then
MOZILLA_DSP=""
P=`fuser /dev/dsp 2>&1 | sed -e 's#^/dev/dsp:##' `