From owner-freebsd-java Mon Mar 13 7:32:27 2000 Delivered-To: freebsd-java@freebsd.org Received: from mail.telekabel.nl (arnhem.telekabel.nl [194.134.132.130]) by hub.freebsd.org (Postfix) with ESMTP id 7A20637BC6C for ; Mon, 13 Mar 2000 07:31:12 -0800 (PST) (envelope-from ernst@jollem.com) Received: from jollem.com (c187104187.telekabel.chello.nl [212.187.104.187]) by mail.telekabel.nl (8.8.8/8.8/EuroNet) with ESMTP id QAA26655; Mon, 13 Mar 2000 16:28:29 +0100 (MET) Message-ID: <38CD091E.CA80CE28@jollem.com> Date: Mon, 13 Mar 2000 16:28:30 +0100 From: Ernst de Haan Organization: Jollem X-Mailer: Mozilla 4.72 [en] (X11; I; FreeBSD 3.4-STABLE i386) X-Accept-Language: en, nl MIME-Version: 1.0 To: Brian Sletten Cc: Donna Hoffmeister , Jose Marques , freebsd-java@FreeBSD.ORG Subject: Re: Linux JDK 1.2.2 RC4 References: Content-Type: multipart/mixed; boundary="------------11E21B7E715F980A169DA694" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------11E21B7E715F980A169DA694 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Brian Sletten wrote: > > > I have downloaded the linux emulation of jdk2 onto freebsd. The demos work, > > my code compiles but does not run. Is this the latest state of affairs? > I've only seen two problems. > > 1) JServ doesn't work without the patch that circulated through here a > while ago. > > 2) I tried starting all of the services necessary for JavaSpaces last > night and got some bizarre behavior as far as the Activation daemon was > concerned. The same code worked fine on an equivalent RedHat box. Both of these problems are probably solved with the `circulating patch', which addressed some socket issue in the Linux emulation port I believe. Dunno where it is, tho. Check the archive, perhaps. Ernst -- Ernst de Haan Freelance Java Architect "Come to me all who are weary and burdened, and I will give you rest" -- Jesus Christ --------------11E21B7E715F980A169DA694 Content-Type: text/x-vcard; charset=us-ascii; name="ernst.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Ernst de Haan Content-Disposition: attachment; filename="ernst.vcf" begin:vcard n:de Haan;Ernst tel;fax:+31 (0)26 3645634 tel;work:+31 (0)26 3623895 x-mozilla-html:FALSE url:http://www.znerd.demon.nl/ org:Jollem adr:;;Rozendaalselaan 35;Velp;GLD;6881 KZ;Netherlands version:2.1 email;internet:ernst@jollem.com title:Java Architect fn:Ernst de Haan end:vcard --------------11E21B7E715F980A169DA694-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 15 11: 3:29 2000 Delivered-To: freebsd-java@freebsd.org Received: from mail.1connect.com (dsl-20919196228.sanjose.ca.internetconnect.net [209.191.96.228]) by hub.freebsd.org (Postfix) with ESMTP id 43E8D37BA78 for ; Wed, 15 Mar 2000 11:03:22 -0800 (PST) (envelope-from keith@1connect.com) Received: from 1connect.com ([10.0.0.75]) by ns1.1connect.com (8.9.3/8.9.1) with ESMTP id MAA66116; Sat, 11 Mar 2000 12:41:17 -0800 (PST) (envelope-from keith@1connect.com) Message-ID: <38CAAFC3.FE74A64D@1connect.com> Date: Sat, 11 Mar 2000 12:42:44 -0800 From: Keith Wong X-Mailer: Mozilla 4.7 [en] (Win95; I) X-Accept-Language: en MIME-Version: 1.0 To: Andrew Sudell , Nate Williams Cc: freebsd-java Subject: JNI and Shared Library Content-Type: multipart/mixed; boundary="------------7B1A422692F97A9F78A42183" Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org This is a multi-part message in MIME format. --------------7B1A422692F97A9F78A42183 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi Folks, I have project that we are intended to use JNI to wrap the C native Code, so I can call java instead of the C. But, we have problem after we try to link the imdsi.o to libimdsi.so (Freebsd gcc environment). Then we are not even run this InsideLine.class. I have compared solaris's cc compiler and gcc compiler, i see some difference on the linker option, but i know i am get wrong on the linker shared library is it I pick the right one. Those are the some reference of how to compile the shared library. Here is the example of how to compile the shared library in Solaris and Win32: http://web2.java.sun.com/docs/books/tutorial/native1.1/stepbystep/step5.html In Solaris the way to get shared library: cc -G -I/usr/local/java/include -I/usr/local/java/include/solaris \ HelloWorldImp.c -o libhello.so Here is the defination -G in Solaris's cc compiler: -G in Solaris is: Passes the option to the link editor to produce a shared object rather than a dynamically linked executable. This option is passed to ld(1), and cannot be used with the -dn option. http://docs.sun.com/ab2/coll.33.5/CUG/@Ab2PageView/2194?Ab2Lang=C&Ab2Enc=iso-8859-1 Here is the gcc in the freebsd's linker's option: http://gcc.gnu.org/onlinedocs/gcc_2.html#SEC13 ------------------------------------------------------------------------------------------------------ Those are how we link the shared library in gcc % gcc -shared -I/usr/local/jdk1.1.8/include -I/usr/local/jdk1.1.8/include/freebsd -I/usr/home/eproj/codebase/com/ingram -I/usr/home/eproj/codebase/com/ingram/hw_appl.h -I/usr/include/rpc/rpc.h -I/usr/home/eproj/codebase/com/ingram/com_ingram_InsideLine.h InsideLine.c -fPIC -o libimdsi.so InsideLine.c: In function `Java_InsideLine_Call_1Server': InsideLine.c:52: warning: cast to pointer from integer of different size InsideLine.c: In function `Java_InsideLine_Close_1Client': InsideLine.c:74: warning: cast to pointer from integer of different size InsideLine.c: In function `Java_InsideLine_Open_1Client': InsideLine.c:87: warning: cast from pointer to integer of different size Then, i try to run the test program. % java com.ingram.InsideLine java.lang.UnsatisfiedLinkError: Open_Client at com.ingram.InsideLine.main(InsideLine.java:23) % file libimdsi.so libimdsi.so: ELF 32-bit LSB shared object, Intel 80386, version 1 (FreeBSD), not stripped >From the output about, i think the libimdsi.so have not linked with the Call_Server function. Do you have any ideal how to make that imdsi.o's three functions linked into the libimdsi.so. I had made full path for java in FreeBSD enirovnment setenv LD_LIBRARY_PATH .:/usr/home/eproj/codebase/com/ingram:/usr/home/eproj/codebase setenv CLASSPATH /usr/local/mm.mysql.jdbc-2.0pre3:/usr/local/share/java/classes/jsdk.jar:/usr/home/eproj/codebase Other, i have the Helloworld.java and .c (from sun website). i can compile it and run with no problem, yes, i know the the Helloworld.c is wrote by us. is that a problem that becuase i import the .object instead of .c file, do we have any way to link the .object file?? Is that i am using the gcc -shared in the correct way? Thanks a million! Keith. --------------7B1A422692F97A9F78A42183 Content-Type: application/x-sh; name="InsideLine.sh" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="InsideLine.sh" gcc -shared -I/usr/local/jdk1.1.8/include -I/usr/local/jdk1.1.8/include/freebsd -I/usr/home/eproj/codebase/com/ingram -I/usr/home/eproj/codebase/com/ingram/hw_appl.h -I/usr/include/rpc/rpc.h -I/usr/home/eproj/codebase/com/ingram/com_ingram_InsideLine.h -I/usr/home/eproj/codebase/com/ingram/imdsi.o InsideLine.c -fPIC -o libimdsi.so --------------7B1A422692F97A9F78A42183 Content-Type: text/x-vcard; charset=us-ascii; name="keith.vcf" Content-Transfer-Encoding: 7bit Content-Description: Card for Keith Wong Content-Disposition: attachment; filename="keith.vcf" begin:vcard n:Wong;Keith tel;pager:415-791-4007 tel;fax:408-363-1803 tel;work:408-363-1800 x-mozilla-html:FALSE adr:;;;;;; version:2.1 email;internet:keith@dominocomp.com fn:Keith Wong end:vcard --------------7B1A422692F97A9F78A42183-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 15 13: 2:16 2000 Delivered-To: freebsd-java@freebsd.org Received: from lodge.guild.ab.ca (lodge.guild.ab.ca [209.91.118.66]) by hub.freebsd.org (Postfix) with ESMTP id 6014B37BADA for ; Wed, 15 Mar 2000 13:01:50 -0800 (PST) (envelope-from davidc@acns.ab.ca) Received: from localhost (davidc@localhost) by lodge.guild.ab.ca (8.9.3/8.9.3) with ESMTP id OAA34511; Wed, 15 Mar 2000 14:07:31 -0700 (MST) (envelope-from davidc@acns.ab.ca) Date: Wed, 15 Mar 2000 14:07:31 -0700 (MST) From: Chad David X-Sender: davidc@lodge.guild.ab.ca To: Keith Wong Cc: freebsd-java Subject: Re: JNI and Shared Library In-Reply-To: <38CAAFC3.FE74A64D@1connect.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I do not completely understand all that you have said, but hopefully this will help (it may be more than you asked for): Step 1) Java source public class Beep { public static native void beep(int count); } static { System.loadLibrary("beep"); } public static void main(String args[]) { beep(4); } } Step 2) Compile the class and generate header javac Beep.java javah -jni Beep.class Step 3) C Source include include #include "Beep.h" /* generated file */ JNIEXPORT void JNICALL Beep_beep(JNIEnv *e, jclass c, jint count) { int i = (int)count; for ( ; i > 0; i--) { printf("%c", 7); fflush(stdout); usleep(300000); } return; } Step 4) Compile and link that C code cc -Wall -c beep.c -I(the paths for your env) ld -Bshareable -fPIC -o libbeep.so beep.o Step 5) Set your LD_LIBRARY_PATH export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD Step 6) Run the program java Beep I hope this helps (and I didn't miss anything). Chad On Sat, 11 Mar 2000, Keith Wong wrote: > Hi Folks, > I have project that we are intended to use JNI to wrap the C native > Code, so I can call java instead of the C. But, we have problem after we > > try to link the imdsi.o to libimdsi.so (Freebsd gcc environment). Then > we are not even run this InsideLine.class. I have compared solaris's cc > compiler and gcc compiler, i see some difference on the linker option, > but i know i am get wrong on the linker shared library is it I pick the > right one. > > Those are the some reference of how to compile the shared library. > Here is the example of how to compile the shared library in Solaris and > Win32: > http://web2.java.sun.com/docs/books/tutorial/native1.1/stepbystep/step5.html > > In Solaris the way to get shared library: > cc -G -I/usr/local/java/include -I/usr/local/java/include/solaris \ > HelloWorldImp.c -o libhello.so > Here is the defination -G in Solaris's cc compiler: > -G in Solaris is: > Passes the option to the link editor to produce a shared object rather > than a dynamically linked executable. This option is passed to ld(1), > and cannot be used with the -dn option. > http://docs.sun.com/ab2/coll.33.5/CUG/@Ab2PageView/2194?Ab2Lang=C&Ab2Enc=iso-8859-1 > > Here is the gcc in the freebsd's linker's option: > http://gcc.gnu.org/onlinedocs/gcc_2.html#SEC13 > > ------------------------------------------------------------------------------------------------------ > > Those are how we link the shared library in gcc > % gcc -shared -I/usr/local/jdk1.1.8/include > -I/usr/local/jdk1.1.8/include/freebsd > -I/usr/home/eproj/codebase/com/ingram > -I/usr/home/eproj/codebase/com/ingram/hw_appl.h -I/usr/include/rpc/rpc.h > -I/usr/home/eproj/codebase/com/ingram/com_ingram_InsideLine.h > InsideLine.c -fPIC -o libimdsi.so > > InsideLine.c: In function `Java_InsideLine_Call_1Server': > InsideLine.c:52: warning: cast to pointer from integer of different size > > InsideLine.c: In function `Java_InsideLine_Close_1Client': > InsideLine.c:74: warning: cast to pointer from integer of different size > > InsideLine.c: In function `Java_InsideLine_Open_1Client': > InsideLine.c:87: warning: cast from pointer to integer of different size > > Then, i try to run the test program. > % java com.ingram.InsideLine > java.lang.UnsatisfiedLinkError: Open_Client > at com.ingram.InsideLine.main(InsideLine.java:23) > > % file libimdsi.so > libimdsi.so: ELF 32-bit LSB shared object, Intel 80386, version 1 > (FreeBSD), not stripped > > >From the output about, i think the libimdsi.so have not linked with the > > Call_Server function. Do you have any ideal how to make that imdsi.o's > three functions linked into the libimdsi.so. I had made full path for > java in FreeBSD enirovnment > setenv LD_LIBRARY_PATH > .:/usr/home/eproj/codebase/com/ingram:/usr/home/eproj/codebase > setenv CLASSPATH > /usr/local/mm.mysql.jdbc-2.0pre3:/usr/local/share/java/classes/jsdk.jar:/usr/home/eproj/codebase > > Other, i have the Helloworld.java and .c (from sun website). i can > compile it and run with no problem, > yes, i know the the Helloworld.c is wrote by us. is that a problem that > becuase i import the .object instead of .c file, > do we have any way to link the .object file?? Is that i am using the gcc > -shared in the correct way? > > > Thanks a million! > > Keith. > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 15 15: 6:44 2000 Delivered-To: freebsd-java@freebsd.org Received: from beta.nova.org (beta.nova.org [209.31.144.41]) by hub.freebsd.org (Postfix) with ESMTP id 12B5F37BD7E for ; Wed, 15 Mar 2000 15:06:30 -0800 (PST) (envelope-from bsletten@nova.org) Received: from fcac.org (members.fcac.org [209.31.144.35]) by beta.nova.org (8.9.1/8.9.1) with ESMTP id SAA07493 for ; Wed, 15 Mar 2000 18:06:28 -0500 (EST) Received: from localhost by fcac.org (8.8.8+Sun/SMI-SVR4) id SAA17034; Wed, 15 Mar 2000 18:06:26 -0500 (EST) Date: Wed, 15 Mar 2000 18:06:25 -0500 (EST) From: Brian Sletten To: freebsd-java@freebsd.org Subject: Green Thread Starvation Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I'm running into a problem where it seems very easy to starve out the AWT Event thread using Blackdown's JVM under Linux emulation. It takes very little to make the Swing app completely unusable if there are a few threads going on at the same time. Is this combination just retardedly bad for threading? The same code seems to work dramatically better under a real Linux machine. I haven't tried it with only green threads on the same box. Has anyone else done anything thread-heavy with the combination of Linux emulation and Blackdown's JVM? (particularly with a UI) I haven't noticed the problems as dramatically doing multi-threaded server code on the same box. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Wed Mar 15 15:44:18 2000 Delivered-To: freebsd-java@freebsd.org Received: from ns.yogotech.com (ns.yogotech.com [206.127.79.126]) by hub.freebsd.org (Postfix) with ESMTP id 0F1C337BC69 for ; Wed, 15 Mar 2000 15:44:15 -0800 (PST) (envelope-from nate@yogotech.com) Received: from nomad.yogotech.com (nomad.yogotech.com [206.127.79.115]) by ns.yogotech.com (8.9.3/8.9.3) with ESMTP id QAA02803; Wed, 15 Mar 2000 16:44:07 -0700 (MST) (envelope-from nate@nomad.yogotech.com) Received: (from nate@localhost) by nomad.yogotech.com (8.8.8/8.8.8) id QAA11714; Wed, 15 Mar 2000 16:44:06 -0700 (MST) (envelope-from nate) Date: Wed, 15 Mar 2000 16:44:06 -0700 (MST) Message-Id: <200003152344.QAA11714@nomad.yogotech.com> From: Nate Williams MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: Chad David Cc: Keith Wong , freebsd-java Subject: Re: JNI and Shared Library In-Reply-To: References: <38CAAFC3.FE74A64D@1connect.com> X-Mailer: VM 6.34 under 19.16 "Lille" XEmacs Lucid Reply-To: nate@yogotech.com (Nate Williams) Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > I do not completely understand all that you have said, but hopefully this > will help (it may be more than you asked for): > > Step 1) Java source > > public class Beep { > public static native void beep(int count); > } > static { > System.loadLibrary("beep"); > } > > public static void main(String args[]) { > beep(4); > } > } > > Step 2) Compile the class and generate header > > javac Beep.java > javah -jni Beep.class > > Step 3) C Source > > include > include > #include "Beep.h" /* generated file */ > > JNIEXPORT void JNICALL > Beep_beep(JNIEnv *e, jclass c, jint count) { > int i = (int)count; > > for ( ; i > 0; i--) { > printf("%c", 7); > fflush(stdout); > usleep(300000); > } > return; > } > > Step 4) Compile and link that C code > > cc -Wall -c beep.c -I(the paths for your env) Make sure you compile with -fPIC for the compiler as well. cc -fPIC -Wall -c beep.c -I(the paths for your env) > ld -Bshareable -fPIC -o libbeep.so beep.o > > Step 5) Set your LD_LIBRARY_PATH > > export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD > > Step 6) Run the program > > java Beep > > I hope this helps (and I didn't miss anything). Great instructions Chad, thanks! Nate To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 16 17:24:30 2000 Delivered-To: freebsd-java@freebsd.org Received: from hermes.weir.net (mail.weir.net [206.229.221.12]) by hub.freebsd.org (Postfix) with ESMTP id 90C2A37BB10 for ; Thu, 16 Mar 2000 17:24:28 -0800 (PST) (envelope-from pstraigh@weir.net) Received: from weir.net (pm1-d00.weir.net [12.32.2.100]) by hermes.weir.net (8.9.3/8.9.3) with ESMTP id UAA06202 for ; Thu, 16 Mar 2000 20:24:26 -0500 Message-ID: <38D18909.85545925@weir.net> Date: Thu, 16 Mar 2000 20:23:22 -0500 From: peggy X-Mailer: Mozilla 4.7 [en] (Win95; I) X-Accept-Language: en,pdf MIME-Version: 1.0 To: freebsd-java@FreeBSD.ORG Subject: java40.jar Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org need this file or program installed and have no idea what i'm doing To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 16 17:27:15 2000 Delivered-To: freebsd-java@freebsd.org Received: from www.kpi.com.au (www.kpi.com.au [203.31.83.86]) by hub.freebsd.org (Postfix) with ESMTP id 7B1F737C1C6 for ; Thu, 16 Mar 2000 17:27:11 -0800 (PST) (envelope-from shevlandj@kpi.com.au) Received: from elite (pA43.hbt.southcom.com.au [203.60.23.68]) by www.kpi.com.au (8.9.3/8.9.3) with SMTP id MAA08265; Fri, 17 Mar 2000 12:26:42 +1100 (EST) (envelope-from shevlandj@kpi.com.au) From: "Joe Shevland" To: "peggy" , Subject: RE: java40.jar Date: Fri, 17 Mar 2000 12:29:16 +1100 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0) X-Mimeole: Produced By Microsoft MimeOLE V5.00.2919.6600 Importance: Normal In-Reply-To: <38D18909.85545925@weir.net> Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Thats rediculous Peggy :) Netscape? More info pls.? > -----Original Message----- > From: owner-freebsd-java@FreeBSD.ORG > [mailto:owner-freebsd-java@FreeBSD.ORG]On Behalf Of peggy > Sent: Friday, 17 March 2000 12:23 PM > To: freebsd-java@FreeBSD.ORG > Subject: java40.jar > > > need this file or program installed and have no idea what i'm doing > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-java" in the body of the message > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Thu Mar 16 23:32: 7 2000 Delivered-To: freebsd-java@freebsd.org Received: from mail.porges.cz (anneca.vol.cz [212.27.198.98]) by hub.freebsd.org (Postfix) with ESMTP id CF9F937B753 for ; Thu, 16 Mar 2000 23:32:03 -0800 (PST) (envelope-from blesa@anneca.cz) Received: from cooper (cooper.hippoware.cz [212.27.194.250]) by mail.porges.cz (8.9.3/8.9.2) with SMTP id IAA02050 for ; Fri, 17 Mar 2000 08:30:56 +0100 (CET) (envelope-from blesa@anneca.cz) From: "Tomas Blesa" To: Subject: jdk1.2 for FreeBSD Date: Fri, 17 Mar 2000 08:30:56 +0100 Message-ID: <000001bf8fe2$bb8500e0$fac21bd4@hippoware.cz> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2314.1300 Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Could you please tell me, when I can expect jdk1.2 for FreeBSD? I tried Linux Blackdown port of jdk but it doesn't work with JServ (and this is my #1 java app on FreeBSD). There is your message (http://www.freebsd.org/java/dists/12.html) saying it would be in the coming weeks :-). Tomas -------------------------------------------------------------------------- Ing. Tomáš Bleša ANNECA s.r.o., Hrbovická 182, 400 01 Ústí nad Labem Web: http://www.anneca.cz/, E-mail: blesa@anneca.cz, Tel.: +420 47 5602073 Tvorba internetových informačních systémů, e-commerce, firemní Web, Java To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message From owner-freebsd-java Fri Mar 17 5:12: 9 2000 Delivered-To: freebsd-java@freebsd.org Received: from green.wl.vg (green.wl.vg [204.203.49.94]) by hub.freebsd.org (Postfix) with ESMTP id E3ABB37B704 for ; Fri, 17 Mar 2000 05:12:06 -0800 (PST) (envelope-from patrick@whetstonelogic.com) Received: from whetstonelogic.com (patrick [205.252.46.171]) by green.wl.vg (8.9.3/8.9.3) with ESMTP id FAA29272; Fri, 17 Mar 2000 05:11:50 -0800 (PST) (envelope-from patrick@whetstonelogic.com) Message-ID: <38D22F01.7D9B248E@whetstonelogic.com> Date: Fri, 17 Mar 2000 08:11:29 -0500 From: Patrick Gardella Organization: Whetstone Logic, Inc. X-Mailer: Mozilla 4.7 [en] (X11; U; FreeBSD 4.0-CURRENT i386) X-Accept-Language: en MIME-Version: 1.0 To: Tomas Blesa Cc: freebsd-java@FreeBSD.ORG Subject: Re: jdk1.2 for FreeBSD References: <000001bf8fe2$bb8500e0$fac21bd4@hippoware.cz> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-java@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Tomas Blesa wrote: > > Could you please tell me, when I can expect jdk1.2 for FreeBSD? I tried > Linux Blackdown port of jdk but it doesn't work with JServ (and this is my > #1 java app on FreeBSD). There is your message > (http://www.freebsd.org/java/dists/12.html) saying it would be in the coming > weeks :-). Tomas, We cannot say for sure. If we have the time to complete it we will. Otherwise, it may take longer. Patrick ---------- Patrick Gardella patrick@whetstonelogic.com VP-Technology patrick@freebsd.org Whetstone Logic, Inc. This space intentionally left blank. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-java" in the body of the message