Just did a fresh CVS checkout of this module since it moved since yesterday.
I was going to play with fortress and was trying to build the deps.
I added threadcontext to the default.properties and the build.xml for event.
A patch is attached. (assuming that's the right thing to do, it did build :)
-pete
compile:
Compiling 8 source files to
/usr/local/src/java/jakarta-avalon-excalibur/event/build/classes
Found 4 semantic errors compiling
"/usr/local/src/java/jakarta-avalon-excalibur/event/src/java/org/apache/avalon/excalibur/event/command/TPCThreadManager.java":
<-------------------------------------------------------------------------------------
70. public TPCThreadManager( int numProcessors, int
threadsPerProcessor, long sleepTime )
. . .
82. }
---->
*** Error: The blank final field "this.m_sleepTime" is not definitely
assigned a value in this constructor.
<-------------------------------------------------------------------------------------
70. public TPCThreadManager( int numProcessors, int
threadsPerProcessor, long sleepTime )
. . .
82. }
---->
*** Error: The blank final field "this.m_threadPool" is not definitely
assigned a value in this constructor.
76.
( processors * threads ) + 1, true, true, 1000L, 10L * 1000L );
--
peter royal -> [EMAIL PROTECTED]
Index: build.xml
===================================================================
RCS file: /home/cvspublic/jakarta-avalon-excalibur/event/build.xml,v
retrieving revision 1.13
diff -u -r1.13 build.xml
--- build.xml 11 Apr 2002 17:36:22 -0000 1.13
+++ build.xml 12 Apr 2002 02:32:39 -0000
@@ -20,6 +20,7 @@
<pathelement location="${excalibur-pool.jar}"/>
<pathelement location="${excalibur-scratchpad.jar}"/>
<pathelement location="${excalibur-core.jar}"/>
+ <pathelement location="${excalibur-threadcontext.jar}"/>
<pathelement location="${avalon-framework.jar}"/>
<pathelement location="${excalibur-util.jar}"/>
<pathelement location="${checkstyle.jar}"/>
Index: default.properties
===================================================================
RCS file: /home/cvspublic/jakarta-avalon-excalibur/event/default.properties,v
retrieving revision 1.4
diff -u -r1.4 default.properties
--- default.properties 11 Apr 2002 17:36:23 -0000 1.4
+++ default.properties 12 Apr 2002 02:32:40 -0000
@@ -23,6 +23,11 @@
excalibur-thread.lib=${excalibur-thread.home}
excalibur-thread.jar=${excalibur-thread.lib}/excalibur-thread-1.0.jar
+# ----- Excalibur ThreadContext, version 1.0 or later -----
+excalibur-threadcontext.home=${basedir}/../threadcontext/dist
+excalibur-threadcontext.lib=${excalibur-threadcontext.home}
+excalibur-threadcontext.jar=${excalibur-threadcontext.lib}/excalibur-threadcontext-1.0.jar
+
# ----- Excalibur Collections, version 1.0 or later -----
excalibur-collections.home=${basedir}/../collections/dist
excalibur-collections.lib=${excalibur-collections.home}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>