Re: latest glibc debian packages?

1998-05-26 Thread Juergen Kreileder
Stephen Zander <[EMAIL PROTECTED]> writes: > > "Louis-David" == Louis-David Mitterrand <[EMAIL PROTECTED]> writes: > Louis-David> Someone mentioned that the glibc versions of Steve > Louis-David> Byrne's ports require the very latest development > Louis-David> versions of glibc. O

Re: latest glibc debian packages?

1998-05-26 Thread Stephen Zander
> "Louis-David" == Louis-David Mitterrand <[EMAIL PROTECTED]> writes: Louis-David> Someone mentioned that the glibc versions of Steve Louis-David> Byrne's ports require the very latest development Louis-David> versions of glibc. On my Debian-2.0 system the Louis-David> glibc-2.

Re: building shared libraries for native

1998-05-26 Thread Duncan Roe
Hi Craig, "info gcc" describes this better. It states that FPIC only makes a difference on the m68k, m88k and the Sparc. N.b. use info! It is kept up to date, while the man page (sometimes) isn't. There was some discussion of how shared libraries work without pic, but I remain bemused that they

latest glibc debian packages?

1998-05-26 Thread Louis-David Mitterrand
Someone mentioned that the glibc versions of Steve Byrne's ports require the very latest development versions of glibc. On my Debian-2.0 system the glibc-2.0.7pre1 won't cut it. Could a kind sould send me a pointer as where are the latest .deb packages? I've looked on ftp.debian.org and couldn't f

RE: jdk 1.1.5-? problems in TextComponets

1998-05-26 Thread Marcus Isaksson
On 26-May-98 Giovanni Wagner wrote: > using the blackdown java port since over 1 year I ´ve some problems > after upgrading from 1.1.3 to 1.1.(4,5). > TextField and TextArea encoding of iso 8859-1 is broken. Both components > can´t display german umlauts, while all other Componets I am using > (

Re: building shared libraries for native

1998-05-26 Thread B. Craig Taverner
>in ".o". Example:gcc -fPIC -c -I file1.c -o Based solely on looking at other peoples makefiles and code, I've been using -fpic under linux and -fPIC under solaris. The gcc man pages say the following: -fpic If supported for the target machines, generate po sitio

Re: Passing classes as parameters

1998-05-26 Thread Ravi Rao
> From: "Wim Ceulemans" <[EMAIL PROTECTED]> > Date: Tue, 26 May 1998 08:45:30 +0200 > Does anyone has experience in passing a class as a parameter in java? > I want to do something like call a method with as parameter a class > name and then create instances of that class in that method. Is this

jdk 1.1.5-? problems in TextComponets

1998-05-26 Thread Giovanni Wagner
Hello Listeners, using the blackdown java port since over 1 year I ´ve some problems after upgrading from 1.1.3 to 1.1.(4,5). TextField and TextArea encoding of iso 8859-1 is broken. Both components can´t display german umlauts, while all other Componets I am using (Buttons, MenuItems, Choices

Re: Passing classes as parameters

1998-05-26 Thread Geoffrey S. Knauth
> Does anyone has experience in passing a class as a parameter in java? You can pass the name of a class ("com.foo.package.Name") as a parameter, and then so long as the class can be found either locally on the client, or via the ARCHIVE=___.jar tag, you can create an instance via something like:

Re: Passing classes as parameters

1998-05-26 Thread B. Craig Taverner
> Does anyone has experience in passing a class as a parameter in java? > I want to do something like call a method with as parameter a class name and > then create instances of that class in that method. Is this possible? try this: public Object makeInstance(String sClassName) { Class rC

Re: Passing classes as parameters

1998-05-26 Thread Pavel
Yes. If your class has a no-arg constructor, just do like this: void method(Class c) { ... Object o = c.newInstance(); ... // use 'o' } Otherwise, look for a Constructor class documenation from java.lang.reflect package to create and initialize your object

accept bug with JWS??

1998-05-26 Thread Joe Carter
A couple of us are experiencing problems connecting to the Java Web Server from _remote_ machines. When used locally the JWS works just fine. When used remotely it takes two attempts to access a page. Now this looks like the accept problem, which I thought had gone away. Can any of the porting pe

Passing classes as parameters

1998-05-26 Thread Wim Ceulemans
Hi Does anyone has experience in passing a class as a parameter in java? I want to do something like call a method with as parameter a class name and then create instances of that class in that method. Is this possible? Regards Wim Ceulemans Nice Software Solutions Eglegemweg 3, 2811 Hombeek Te

1.1.6 glibc v1-test now available

1998-05-26 Thread Christopher Seawood
I finally got a chance to build this. It's based upon Byrne's 1.1.6 diffs. It hasn't been tested much but it works for the java apps I use. You can grab it from: http://www.seawood.org/java/ - cls