[freenet-support] Building from Source on OS X--Packages not Found

2003-01-29 Thread Aaron Davies
I'm trying to build from the latest source release, and I get

bash-2.05a$ make
jikes -bootclasspath lib/freenet-ext.jar -sourcepath src -d build  
src/freenet/client/*.java src/freenet/client/cli/*.java

Found 2 system errors:

*** Error: Could not find package java/util in:
lib/freenet-ext.jar
src



*** Error: Could not find package java/lang in:
lib/freenet-ext.jar
src

make: *** [client] Error 1

My CLASSPATH appears to be unset, which is probably the problem. What 
should I set it to? I'm running 10.2.3 w/Developer package.
--
____
   /  )  /  )
  /--/ __.  __  /  / __. , __o  _  _
 /  (_(_/|_/ (_(_) / / _  /__/_(_/|_\/ __/_/_)_


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support


Re: [freenet-support] Building from Source on OS X--Packages not Found

2003-01-29 Thread Stef
Am 29.01.2003 18:38:06, schrieb Aaron Davies [EMAIL PROTECTED]:

I'm trying to build from the latest source release, and I get

bash-2.05a$ make
jikes -bootclasspath lib/freenet-ext.jar -sourcepath src -d build  
src/freenet/client/*.java src/freenet/client/cli/*.java

Found 2 system errors:

*** Error: Could not find package java/util in:
 lib/freenet-ext.jar
 src

You have to download this file (freenet-ext.jar) and to put it
in the ./lib directory.

Here are the specific lines in Build.bat:

if exist lib\freenet-ext.jar goto haveext
echo freenet-ext.jar not found:
echo Please download http://freenetproject.org/snapshots/freenet-ext.jar
echo into the lib directory.
goto end
:haveext

echo Building the Freenet node and servlets...


Greetings,
Stef




*** Error: Could not find package java/lang in:
 lib/freenet-ext.jar
 src

make: *** [client] Error 1

My CLASSPATH appears to be unset, which is probably the problem. What 
should I set it to? I'm running 10.2.3 w/Developer package.
-- 
 ____
/  )  /  )
   /--/ __.  __  /  / __. , __o  _  _
  /  (_(_/|_/ (_(_) / / _  /__/_(_/|_\/ __/_/_)_


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support





___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] Building from Source on OS X--Packages not Found

2003-01-29 Thread Aaron Davies
I've already got that. Just to be sure, I downloaded it again, but I'm 
still getting the same error when building.

On Wednesday, January 29, 2003, at 11:51  AM, Stef wrote:

Am 29.01.2003 18:38:06, schrieb Aaron Davies [EMAIL PROTECTED]:


I'm trying to build from the latest source release, and I get

bash-2.05a$ make
jikes -bootclasspath lib/freenet-ext.jar -sourcepath src -d build
src/freenet/client/*.java src/freenet/client/cli/*.java

Found 2 system errors:

*** Error: Could not find package java/util in:
lib/freenet-ext.jar
src


You have to download this file (freenet-ext.jar) and to put it
in the ./lib directory.

Here are the specific lines in Build.bat:

if exist lib\freenet-ext.jar goto haveext
echo freenet-ext.jar not found:
echo Please download 
http://freenetproject.org/snapshots/freenet-ext.jar
echo into the lib directory.
goto end
:haveext

echo Building the Freenet node and servlets...


Greetings,
Stef




*** Error: Could not find package java/lang in:
lib/freenet-ext.jar
src

make: *** [client] Error 1

My CLASSPATH appears to be unset, which is probably the problem. What
should I set it to? I'm running 10.2.3 w/Developer package.
--
____
   /  )  /  )
  /--/ __.  __  /  / __. , __o  _  _
 /  (_(_/|_/ (_(_) / / _  /__/_(_/|_\/ __/_/_)_


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support






___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



--
Aaron Davies
[EMAIL PROTECTED]


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support



Re: [freenet-support] Building from Source on OS X--Packages not Found

2003-01-29 Thread Greg Wooledge
Aaron Davies ([EMAIL PROTECTED]) wrote:

 bash-2.05a$ make
 jikes -bootclasspath lib/freenet-ext.jar -sourcepath src -d build  
 src/freenet/client/*.java src/freenet/client/cli/*.java
 
 Found 2 system errors:
 
 *** Error: Could not find package java/util in:
 lib/freenet-ext.jar
 src

You probably have to set CLASSPATH to point to a place where the
jdk1.1 classes can be found, since (I think) jikes does not provide
these itself.

Failing that, you might want to try building with ant instead of make.
ant uses build.xml instead of Makefile, and you'll have to edit
the top of it to indicate that you wish to compile with jikes.

Also please be sure you are using jikes version 1.14.  Nothing older,
and NOTHING NEWER.

-- 
Greg Wooledge  |   Truth belongs to everybody.
[EMAIL PROTECTED]  |- The Red Hot Chili Peppers
http://wooledge.org/~greg/ |



msg02729/pgp0.pgp
Description: PGP signature


Re: [freenet-support] Building from Source on OS X--Packages not Found

2003-01-29 Thread Aaron Davies
On Wednesday, January 29, 2003, at 05:18  PM, Greg Wooledge wrote:


Aaron Davies ([EMAIL PROTECTED]) wrote:


bash-2.05a$ make
jikes -bootclasspath lib/freenet-ext.jar -sourcepath src -d build
src/freenet/client/*.java src/freenet/client/cli/*.java

Found 2 system errors:

*** Error: Could not find package java/util in:
lib/freenet-ext.jar
src


You probably have to set CLASSPATH to point to a place where the
jdk1.1 classes can be found, since (I think) jikes does not provide
these itself.


So where is that on OS X? I have no idea where they are.


Failing that, you might want to try building with ant instead of make.
ant uses build.xml instead of Makefile, and you'll have to edit
the top of it to indicate that you wish to compile with jikes.

Also please be sure you are using jikes version 1.14.  Nothing older,
and NOTHING NEWER.


Where can I get a binary of it? The source I d/l'd from IBM won't 
compile. My current ver seems to be 1.15.
--
Aaron Davies
[EMAIL PROTECTED]


___
support mailing list
[EMAIL PROTECTED]
http://hawk.freenetproject.org/cgi-bin/mailman/listinfo/support