Build our new unsafe library (on Linux at least) and some other random
viztool crap that doesn't really matter. git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2561 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -107,6 +107,8 @@
|
|||||||
executable="make"/>
|
executable="make"/>
|
||||||
<exec dir="src/java/com/threerings/util/signal/i686-Linux"
|
<exec dir="src/java/com/threerings/util/signal/i686-Linux"
|
||||||
executable="make"/>
|
executable="make"/>
|
||||||
|
<exec dir="src/java/com/threerings/util/unsafe/i686-Linux"
|
||||||
|
executable="make"/>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
<!-- build the javadoc documentation -->
|
<!-- build the javadoc documentation -->
|
||||||
@@ -183,8 +185,7 @@
|
|||||||
<target name="hierviz" depends="prepare,compile">
|
<target name="hierviz" depends="prepare,compile">
|
||||||
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask"/>
|
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask"/>
|
||||||
<viztool visualizer="com.samskivert.viztool.hierarchy.HierarchyVisualizer"
|
<viztool visualizer="com.samskivert.viztool.hierarchy.HierarchyVisualizer"
|
||||||
pkgroot="com.threerings"
|
pkgroot="com.threerings.miso" classes="com.threerings.miso.*"
|
||||||
classes="com.threerings.*"
|
|
||||||
output="hierviz.ps">
|
output="hierviz.ps">
|
||||||
<classpath refid="classpath"/>
|
<classpath refid="classpath"/>
|
||||||
</viztool>
|
</viztool>
|
||||||
@@ -194,10 +195,10 @@
|
|||||||
<target name="sumgen" depends="prepare,compile">
|
<target name="sumgen" depends="prepare,compile">
|
||||||
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask"/>
|
<taskdef name="viztool" classname="com.samskivert.viztool.DriverTask"/>
|
||||||
<viztool visualizer="com.samskivert.viztool.summary.SummaryVisualizer"
|
<viztool visualizer="com.samskivert.viztool.summary.SummaryVisualizer"
|
||||||
pkgroot="com.threerings"
|
pkgroot="com.threerings.miso"
|
||||||
classes=".*Director$"
|
classes="com.threerings.miso.*Scene.*"
|
||||||
output="summary.ps">
|
output="summary.ps">
|
||||||
<classpath refid="classpath"/>
|
<classpath refid="base.classpath"/>
|
||||||
</viztool>
|
</viztool>
|
||||||
</target>
|
</target>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: SoundManager.java,v 1.61 2003/05/03 00:13:04 ray Exp $
|
// $Id: SoundManager.java,v 1.62 2003/05/09 03:24:12 mdb Exp $
|
||||||
|
|
||||||
package com.threerings.media.sound;
|
package com.threerings.media.sound;
|
||||||
|
|
||||||
@@ -423,8 +423,11 @@ public class SoundManager
|
|||||||
uafe + "].");
|
uafe + "].");
|
||||||
|
|
||||||
} catch (LineUnavailableException lue) {
|
} catch (LineUnavailableException lue) {
|
||||||
Log.warning("Line not available to play sound [key=" + key +
|
// this error comes every goddamned time we play a sound on
|
||||||
", e=" + lue + "].");
|
// someone with a misconfigured sound card, so let's just keep
|
||||||
|
// it to ourselves
|
||||||
|
Log.debug("Line not available to play sound [key=" + key +
|
||||||
|
", e=" + lue + "].");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user