Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] PERFORCE change 77944 by Juuso Alasuutari for review

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Perforce Review Daemon <p4review AT smee.org>
  • To: "Andrew Stitt" <a AT t.armory.com>, "Arjan Bouter" <abouter AT sourcemage.org>, "SM-Commit Daemon" <sm-commit AT lists.ibiblio.org>, "duane_malcolm" <d.malcolm AT auckland.ac.nz>, "Eric Sandall" <eric AT sandall.us>, "Ethan Grammatikidis" <eekee AT eekee.is-a-geek.org>, "Gareth Clay" <gareth AT caffeinefuelled.co.uk>, "Ladislav Hagara" <ladislav.hagara AT unob.cz>, "Maurizio Boriani" <baux AT member.fsf.org>, "Pieter Lenaerts" <e-type AT sourcemage.org>, "Pol Vinogradov" <vin.public AT gmail.com>, "Robin Cook" <rcook AT wyrms.net>, "Seth Woolley" <seth AT swoolley.homeip.net>, "Unet" <unet AT sourcemage.org>, "vladimir_marek" <vlmarek AT volny.cz>
  • Subject: [SM-Commit] PERFORCE change 77944 by Juuso Alasuutari for review
  • Date: Tue, 18 Apr 2006 18:25:01 +0100 (BST)

Change 77944 by juuso_alasuutari@juuso_alasuutari-kamayuq on 2006/04/18
18:21:53

Reads $USE_AOSS_WRAPPER and if set (and if /usr/bin/aoss
exists), launches using the oss-to-alsa wrapper.

Affected files ...

... //sgl/grimoires/devel/http/firefox/HISTORY#55 edit
... //sgl/grimoires/devel/http/firefox/firefox#7 edit

Differences ...

==== //sgl/grimoires/devel/http/firefox/HISTORY#55 (text) ====

@@ -1,3 +1,7 @@
+2006-04-18 Juuso Alasuutari <iuso AT sourcemage.org>
+ * firefox: Added conditional to launch using aoss wrapper if
+ $USE_AOSS_WRAPPER is set (by alsa-oss.sh profile.d script)
+
2006-04-15 Arwed v. Merkatz <v.merkatz AT gmx.net>
* DETAILS: updated to 1.5.0.2, set SECURITY_PATCH=1


==== //sgl/grimoires/devel/http/firefox/firefox#7 (text) ====

@@ -13,4 +13,10 @@
remote='-remote xfeDoCommand(openBrowser)'
fi
fi
-/usr/lib/firefox/firefox-bin $remote "$@"
+
+if [[ -n $USE_AOSS_WRAPPER ]] &&
+ [[ -x /usr/bin/aoss ]]; then
+ /usr/bin/aoss /usr/lib/firefox/firefox-bin $remote "$@"
+else
+ /usr/lib/firefox/firefox-bin $remote "$@"
+fi




Archive powered by MHonArc 2.6.24.

Top of Page