Re: Bitwise Operators.

1998-08-04 Thread Carlos Cassino


Sorry for sending two messages, I had a problem in my connection
and thought the first mail was lost (it wasn't even in the system
log) so I wrote another...

-- Cassino



Re: AWT-Bug in JDK1.1.6v2

1998-08-04 Thread Martin Wickman


On Tue, 4 Aug 1998, Kurt Huwig wrote:

> Linux: SuSE Linux 5.2
> Kernel: 2.0.35
> LibC: libc.so.5.4.44
> JDK: 1.1.6v2 (from java-linux.org)
> Processor: AMD K6-233
> With and without Motif 2.0
> WindowManager: KDE 1.0
> X-Server: XFree86 Version 3.3.2
> RAM: 64MB
> Swap: 128MB
> 
> The following (also attached for convenience) program works 
> with JDK1.1.3, but not with JDK1.1.6. 
> It should create two frames.
> 
> JDK 1.1.3 (from SuSE): Both frames appear
> JDK 1.1.6: Both frames appear, flicker a bit and the second frame 
>   disappears Sometimes I get messages about Bogus free memory 
>   and unallocated memory, but not in this small sample.
> 
> It seems to be the 'setResizable( false )' that makes the problems. If I omit
> it, everything works fine.

Great. I just wanted to say that I experience the same behavior as you. I
haven't tried JDK1.1.3, only 1.1.6. I'm using glibc and KDE 1.0. I
remember someone mention this as a KDE problem.

A few additions:

* I checked the KDE-buglist and saw a few bugs like this one (see
  http://buglist.kde.org)

* setResizable(boolean) is a call to FramePeer.setResizable(boolean)

* The bug only appears when the boolean argument is false

* ICQ for Java is affected

I would be great to know if there are other Windowmanagers that have 
this thing as well. Use Kurts code below to test:

- -- cut here ---
import java.awt.Frame;

class JDK116Bug {
public static void main( String argv[] ) {
Frame a = new Frame();
a.setSize( 50, 50 );
a.show();

Frame b = new Frame();
b.setSize( 50, 50 );
b.setResizable( false ); // this line causes trouble!
b.show();
}
} 




jdk1.1.6 & libc.5.4.46 & XFree86 3.3.1 not working in X

1998-08-04 Thread peter . pilgrim


To [EMAIL PROTECTED]

I downloaded the jdk1.1.6v2 for libc5
but I cannot get AWT stuff to work.

I understood you one had to compile XFree86 3.3.1 with thread support
So I did this last week. Still does not work for me when I tried
the demo/GraphicsTest/example1.html with the appletviewer.

Any ideas ?

I ran Steve's collection script and put the results in java-debug.log.gz
(expands to 180k!)


Cheers

Peter

--
import java.std.disclaimer.*;   // "Dontcha just love the API, baby bop!"
Peter Pilgrim  Dept:OTC Derivatives IT, 
Deutsche Bank (UK) Ltd, Groundfloor 133 Houndsditch, London, EC3A 7DX
Tel: +44-545-8000  Direct: +44 (0)171-545-8293  Fax: 0171-545-4313
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-

 java-debug.log.gz


Re: AWT-Bug in JDK1.1.6v2

1998-08-04 Thread Juergen Kreileder

Kurt Huwig <[EMAIL PROTECTED]> writes:

> [1  ]
> -BEGIN PGP SIGNED MESSAGE-
> 
> Hello!
> 
> Linux: SuSE Linux 5.2
> Kernel: 2.0.35
> LibC: libc.so.5.4.44
> JDK: 1.1.6v2 (from java-linux.org)
> Processor: AMD K6-233
> With and without Motif 2.0
> WindowManager: KDE 1.0
> X-Server: XFree86 Version 3.3.2
> RAM: 64MB
> Swap: 128MB
> 
> The following (also attached for convenience) program works with JDK1.1.3, but
> not with JDK1.1.6. It should create two frames.
> 
> JDK 1.1.6: Both frames appear, flicker a bit and the second frame disappears
>   Sometimes I get messages about Bogus free memory and unallocated memory,
>   but not in this small sample.
> 

I have a patch for this bug, hopefully it will be in the next release.

Jürgen

-- 
Juergen Kreileder, Universitaet Dortmund, Lehrstuhl Informatik V
Baroper Strasse 301, D-44221 Dortmund, Germany
Phone: ++49 231/755-5806, Fax: ++49 231/755-5802



Re: AWT-Bug in JDK1.1.6v2

1998-08-04 Thread Kurt Huwig

-BEGIN PGP SIGNED MESSAGE-

Thanx for your response. I tried it with twm and both frames appear, so it
seems to be due to kwm (KDE Window Manager).

But still I get messages like this:

Tried to free bogus memory 81c9ea8, ignored
Tried to free bogus memory 81c9f80, ignored
free: double-freed at 8215860
free: double-freed at 82158D8

only with jdk1.1.6 and not with jdk1.1.3. Program was BurnIT-1.0 (ask
www.freashmeat.com for it).

The bug with Swing-Applications and Menu is still there; Menues overwrite the
Menutitle until I move the whole window. This does not happen with 1.1.3, but
happens with both kwm and twm.

Example (you need Swing 1.0.2 for this!):
- --- cut here 
import com.sun.java.swing.*;

class SwingBug extends JFrame {
SwingBug() {
JMenu m = new JMenu( "File" );
m.add( new JMenuItem( "Open" ) );
JMenuBar mb = new JMenuBar();
mb.add( m );
getContentPane().add( mb );
setSize( 200, 100 );
show();
}

public static void main( String argv[] ) {
new SwingBug();
}
}
- --- and here ---

Kurt

Am Tue, 04 Aug 1998 schrieb Martin Wickman:
>On Tue, 4 Aug 1998, Kurt Huwig wrote:
>
>> Linux: SuSE Linux 5.2
>> Kernel: 2.0.35
>> LibC: libc.so.5.4.44
>> JDK: 1.1.6v2 (from java-linux.org)
>> Processor: AMD K6-233
>> With and without Motif 2.0
>> WindowManager: KDE 1.0
>> X-Server: XFree86 Version 3.3.2
>> RAM: 64MB
>> Swap: 128MB
>> 
>> The following (also attached for convenience) program works 
>> with JDK1.1.3, but not with JDK1.1.6. 
>> It should create two frames.
>> 
>> JDK 1.1.3 (from SuSE): Both frames appear
>> JDK 1.1.6: Both frames appear, flicker a bit and the second frame 
>>   disappears Sometimes I get messages about Bogus free memory 
>>   and unallocated memory, but not in this small sample.
>> 
>> It seems to be the 'setResizable( false )' that makes the problems. If I omit
>> it, everything works fine.
>
>Great. I just wanted to say that I experience the same behavior as you. I
>haven't tried JDK1.1.3, only 1.1.6. I'm using glibc and KDE 1.0. I
>remember someone mention this as a KDE problem.
>
>A few additions:
>
>* I checked the KDE-buglist and saw a few bugs like this one (see
>  http://buglist.kde.org)
>
>* setResizable(boolean) is a call to FramePeer.setResizable(boolean)
>
>* The bug only appears when the boolean argument is false
>
>* ICQ for Java is affected
>
>I would be great to know if there are other Windowmanagers that have 
>this thing as well. Use Kurts code below to test:
>
>- -- cut here ---
>import java.awt.Frame;
>
>class JDK116Bug {
>public static void main( String argv[] ) {
>Frame a = new Frame();
>a.setSize( 50, 50 );
>a.show();
>
>Frame b = new Frame();
>b.setSize( 50, 50 );
>b.setResizable( false ); // this line causes trouble!
>b.show();
>}
>} 

- -
If you put a PC-formatted disk into a Macintosh, you can read it.
If you put a Mac-formatted disk into a Win95-PC, it asks you
whether it should format it
-BEGIN PGP SIGNATURE-
Version: 2.6.3i
Charset: noconv

iQBVAwUBNcdIC0cqiS0id3pJAQHq0AIAlwqejXJxl0aUl2JbQknHd0NuGTZvhHR6
VgalLGkCzkS0vu9On4uLVeGezytZu6n+q6Bbg9IigdzhDYCYSwgr5w==
=MT5e
-END PGP SIGNATURE-



Re: new VolanoMark benchmark scalability results

1998-08-04 Thread Matthew Hunter

On Tue, 4 Aug 1998, Leo Cyr wrote:
> > Interesting article comparing Java VMs at
> >   http://www.javaworld.com/javaworld/jw-08-1998/jw-08-volanomark.html
> > The results here are oriented towards testing lots and lots of
> > connections. Suprisingly, Linux does quite poorly with both the JDK
> > and TowerJ. The article suggests that this might not just be a slow
> > Java, but rather problems with Linux.
> Linux's results in these tests disturb me.  I'd like to hear come
> commentary from those who know the VM and Linux internals!

The first thing to note about those tests is that most of the other JVMs
have JIT compilers.  The Linux JDK doesn't by default, but you can plug
TYA in and use it, which should give a significant performance increase,
albeit not sufficient to catch up.  An optimizing JIT might help even
more.

-- 
Matthew Hunter ([EMAIL PROTECTED]) (Amiga/BeOS/Linux)




Re: AWT-Bug in JDK1.1.6v2

1998-08-04 Thread Eu Hin Chua

On Tue, 4 Aug 1998, Kurt Huwig wrote:

> The bug with Swing-Applications and Menu is still there; Menues overwrite the
> Menutitle until I move the whole window. This does not happen with 1.1.3, but
> happens with both kwm and twm.

Hi,

Just to confirm this, I can duplicate this bug when using kwm 1.0 and
WindowMaker when using jdk 1.1.6v2 glibc (Byrne). However, there is no
problem whatsover when I switched to jdk 1.1.5v7 glibc (Byrne). I have
tried this with Swing 1.02, 1.03 and 1.1-beta.

regards,

Eu Hin

--
"...bottom line, Dilbert teaches you that your computer is your 
friend while Quake teaches you not to use your grenade launcher 
in a small room." - www.bluesnews.com

iiNet Technologies



Re: Bitwise operators

1998-08-04 Thread Dirk Vanhalle

Actually, they all make sense.  It's plain 2's complement binary
arithmatic.

First of all, 0xF0F0F0F0 is a negative (signed) integer number.  So
assigning it to a long makes it 0xF0F0F0F0L.
This accounts for the fact that all 1's are shifted in when you shift
right, even if you use '>>>'.

Secondly, 1 << 31 = 0x8000, which is a negative number.  Making it long
converts it to 0x8000L.  So (l&i) does not extract bit 31, but
bits 63 throug 31.
For the last line, this makes 0x0F0F0FL & 0x8000 =
0x.  This is different from 0, so a "1" gets printed.

I would advise you to make sure you use only longs for this arithmetic.
(Append a 'L' to the constants).  Automatic conversions from integers to
longs can produce confusing results as you have noticed.
BTW, why don't you use Long.toBinaryString() ?

Cheers,
Dirk.




AWT-Bug in JDK1.1.6v2

1998-08-04 Thread Kurt Huwig

-BEGIN PGP SIGNED MESSAGE-

Hello!

Linux: SuSE Linux 5.2
Kernel: 2.0.35
LibC: libc.so.5.4.44
JDK: 1.1.6v2 (from java-linux.org)
Processor: AMD K6-233
With and without Motif 2.0
WindowManager: KDE 1.0
X-Server: XFree86 Version 3.3.2
RAM: 64MB
Swap: 128MB

The following (also attached for convenience) program works with JDK1.1.3, but
not with JDK1.1.6. It should create two frames.

JDK 1.1.3 (from SuSE): Both frames appear
JDK 1.1.6: Both frames appear, flicker a bit and the second frame disappears
Sometimes I get messages about Bogus free memory and unallocated memory,
but not in this small sample.

It seems to be the 'setResizable( false )' that makes the problems. If I omit
it, everything works fine.

I found two other differences:
1. The fonts used for Buttons, Menubars etc. are different, but this could be
due to the SuSE-version.

2. When using Swing 1.0.2, Menus dont display right. If you make a frame and
attach a menubar to it, then select a menu, the upcoming popupmenu will be
displayed over the menubar. Once you move the whole window the first time with
the mouse, everything works fine. This happens with every Swing-application I
have (FreeBuilder, Swing-Demos coming with Swing etc.). I can provide
short examples for this, if you want.

Im not subscribed to the list anymore, so please reply directly.

Kurt

- -- cut here ---
import java.awt.Frame;

class JDK116Bug {
public static void main( String argv[] ) {
Frame a = new Frame();
a.setSize( 50, 50 );
a.show();

Frame b = new Frame();
b.setSize( 50, 50 );
b.setResizable( false );// this line causes trouble!
b.show();
}
}
- -- cut here --

- ---
Samba was detected as "Samba" by WinNT 4.0 Workstation and PageMaker 6.5
was slow like hell. Now I managed to have it detected as "WinNT 4.1 Server"
and it's much faster.  (Ein Schelm, wer Boeses dabei denkt)

-BEGIN PGP SIGNATURE-
Version: 2.6.3i
Charset: noconv

iQBVAwUBNcbV3UcqiS0id3pJAQGEjQH7BVQTX+ejN/2AiLhJ/DxPL4XWQyZAtXi/
gUwYTp+I7QkuN96k4j9dEquHUM2x9UUUEnn0+2TjBw08qq6RhnloYg==
=of2x
-END PGP SIGNATURE-


import java.awt.Frame;

class JDK116Bug {
	public static void main( String argv[] ) {
		Frame a = new Frame();
		a.setSize( 50, 50 );
		a.show();

		Frame b = new Frame();
		b.setSize( 50, 50 );
		b.setResizable( false );	// this line causes trouble!
		b.show();
	}
}



Re: Bitwise Operators.

1998-08-04 Thread Azazel

Thanks chaps: the operators are now doing what I hoped.
Learnt a valuable lesson today: if one is going to twiddle
bits it helps if one is familiar with the bits one is
twiddling. :)

J.

+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+

www:http://www.elephant.org/~azazel/
mail:   [EMAIL PROTECTED]

+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+0+



Java and Redhat

1998-08-04 Thread Eugene Teh


Hi, 

It's said that you need 

1.glibc-2.0.7-7 
2.glibc-devel-2.0.7-7 

to install jdk1.1.6. 

but Redhat5.0 does not allow the installation of (2) 
How does one upgrade the Redhat OS from 5.0 to 5.1? 
This is really frustrating as I searched the whole website to no avail. 
I am definitely not going to reinstall everything

Eugene Teh



Re: Mail I sent to Inprise

1998-08-04 Thread Richard Jones

Keith T. Garner wrote:
> 
> I sent this off to inprise this morningI'll let you know what response
> I get.  (Oh man, I just noticed a type/think-o in theres/thing/this/
> towards the bottom.)
> 
> I figured the mentioning of recent events couldn't hurt.

If people want to show some support for Visibroker
for Java on Linux, they could follow up to my posting on
Inprise's new Visibroker forum:

news://forums.inprise.com/inprise.public.visibroker

Rich.

-- 
Richard Jones [EMAIL PROTECTED] Tel: +44 171 598 7557 Fax: 460 4461
Orchestream Ltd.  125 Old Brompton Rd. London SW7 3RP PGP: www.four11.com
"boredom ... one of the most overrated emotions ... the sky is made
of bubbles ..."   Original message content Copyright © 1998



Announcing JDK 1.1.6 V3 for MkLinux, Linux PMac, Linux PowerPC

1998-08-04 Thread Kevin B. Hendricks


Hi,

Your Linux PowerPC JDK Porting Team is pleased to announce JDK 1.1.6
Version 3 for Linux on PowerPC.  This release is available from our
website and should soon be available on our mirrors:

http://business.tyler.wm.edu/mklinux/index.html

or for slower connections that don't like java on web pages try

http://business.tyler.wm.edu/mklinux/main.html

(We have recently had DNS troubles.  If you have a problem replace
business.tyler.wm.edu with 128.239.101.49)


New in this Release
---
* This is our v3 port of Sun's JDK 1.1.6 final.
- Bad or Missing KeyPressed events are fixed (a Sun bug)
- X11GraphicsdrawString multi-thread corruption fix (a Sun bug)
- List fix to allow removing item 0
- getlocalhost fix
- workaround for Motif bug that causes seg-faults
- fix to prevent hanging graphics under fast graphics updates (ala
CM3)
 - turn-on by:  export JDK_IO_FIX=true
 - turn-off by: unset JDK_IO_FIX
- fix to allow real non-blocking io on stdin, stderr, stdout (a Sun
bug)
- fix for Finalizer thread caused deadlocks (a Sun bug)
- fix for JNI problems with egcs -O2
- fix for frame borders / sizing (a Sun bug)
- fix for offset menus when using Swing
- fix for non-resizable frames (a Sun bug)
- fix for signal names in java stack/thread dump

Also available on this site are:

- Metrowerks supplied JIT for Linux PowerPC
- HotJava Browser 1.1.4
- Swing 1.0.3

Have Fun!

Kevin




--- This system is powered by the Mercere mailing list suite ---
 http://www.oeil.qc.ca/Mercere/

--
Kevin B. Hendricks
Associate Professor of Operations and Information Technology
School of Business, College of William & Mary, 307 Tyler Hall,
P.O.Box 8795, Williamsburg, VA  23187-8795
(757) 221-1702, [EMAIL PROTECTED]; http://business.tyler.wm.edu




new VolanoMark benchmark scalability results

1998-08-04 Thread Nelson Minar

Interesting article comparing Java VMs at
  http://www.javaworld.com/javaworld/jw-08-1998/jw-08-volanomark.html
The results here are oriented towards testing lots and lots of
connections. Suprisingly, Linux does quite poorly with both the JDK
and TowerJ. The article suggests that this might not just be a slow
Java, but rather problems with Linux.



JDK1.1.6 for Alpha-Linux?

1998-08-04 Thread Rich Edwards

Does anyone know of any efforts to port the JDK1.1.6 to Alpha-Linux?

Thanks,

Rich Edwards
Senior Software Engineer
Codonics, Inc.
e-mail: [EMAIL PROTECTED]



Re: new VolanoMark benchmark scalability results

1998-08-04 Thread Leo Cyr

> Interesting article comparing Java VMs at
>   http://www.javaworld.com/javaworld/jw-08-1998/jw-08-volanomark.html
> The results here are oriented towards testing lots and lots of
> connections. Suprisingly, Linux does quite poorly with both the JDK
> and TowerJ. The article suggests that this might not just be a slow
> Java, but rather problems with Linux.

Linux's results in these tests disturb me.  I'd like to hear come
commentary from those who know the VM and Linux internals!

Leo Cyr



Re: [CANCELED] jdk1.1.6 & libc.5.4.46 & XFree86 3.3.1 not working in X

1998-08-04 Thread peter . pilgrim

> 
> To [EMAIL PROTECTED]
> 
> I downloaded the jdk1.1.6v2 for libc5
> but I cannot get AWT stuff to work.
> 
> I understood you one had to compile XFree86 3.3.1 with thread support
> So I did this last week. Still does not work for me when I tried
> the demo/GraphicsTest/example1.html with the appletviewer.
> 
> Any ideas ?
> 
> I ran Steve's collection script and put the results in java-debug.log.gz
> (expands to 180k!)

Sorry Steve, CANCEL  THAT LAST POST

Thanks to the mail archive at 
<  http://www.mail-archive.com/[email protected]/msg00986.html >

I found the solution to my bloody problem!
So I will repeat the message here:


THOSE OF YOU WITH THE LATEST DYNAMIC LOADER 
LIBRARY `libdl.so.1.9.9'  AND JDK 1.1.6v2 

=

  Subject: libdl.so.1.9.9 and JDK 1.1.6v2 
  Date: Fri, 10 Jul 1998 12:44:24 -0400 


  For everyone using libdl.so.1.9.9 and JDK 1.1.6v2.

  Try remove the libdl.so.1 and libc.so.5 from your
  $JAVA_HOME/lib/i686/green_threads/

  Assuming you are using a newer libc5 like libc.so.5.4.44 of course.

  In any case, read the README.linux file.


  Cheers,
  Paul

===


Cheers

Peter

--
import java.std.disclaimer.*;   // "Dontcha just love the API, baby bop!"
Peter Pilgrim  Dept:OTC Derivatives IT, 
Deutsche Bank (UK) Ltd, Groundfloor 133 Houndsditch, London, EC3A 7DX
Tel: +44-545-8000  Direct: +44 (0)171-545-8293  Fax: 0171-545-4313
-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-



JDK-TextField-Problem

1998-08-04 Thread Kalimero

I'd placed a TextField or a TextAres (also Swing-Components) into a
Window (or JWindow), all inputs appears in the terminal an not in the
TextFields. TextFields with Frames or Dialogs work without any
problems...

Any solutions???

Thx.
Wolfgang



Re: new VolanoMark benchmark scalability results

1998-08-04 Thread Leo Cyr

The most unpleasent part was the Linux VM being unable to achieve more than
2xx or so simultaneous connections

Leo Cyr



Re: Java and Redhat

1998-08-04 Thread Steve Hier

1.  Obtain RH 5.1
2.  Start install program
3.  Select 'upgrade'.

I'm running a system that was upgraded from RH 4.2
and am having no problems with JDK 1.1.6 (+swing).

At 05:29 AM 8/4/98 -0700, Eugene Teh wrote:
>
>Hi, 
>
>   It's said that you need 
>   
>   1.glibc-2.0.7-7 
>   2.glibc-devel-2.0.7-7 
>
>   to install jdk1.1.6. 
>
>but Redhat5.0 does not allow the installation of (2) 
>How does one upgrade the Redhat OS from 5.0 to 5.1? 
>This is really frustrating as I searched the whole website to no avail. 
>I am definitely not going to reinstall everything
>
>Eugene Teh
>
>
>


Steve Hier
[EMAIL PROTECTED]
(805) 988-1515 xt 157
(805) 988-4225 FAX

-BEGIN PGP PUBLIC KEY BLOCK-
Version: PGP for Personal Privacy 5.0

mQCNAi0qAewAAAEEAKsXpOLhaPdkVgiT6wnLOoTTmI8R+1/I5HfLhifoQyjWgbbn
H2NeRv+kqH/rk624fiQg3KlRRO/bnegkTPPHHMaLYApi/J67zPXdnkSvdzR4XRCs
yoaRR6PjIPeOOvX6aaj3FTYg4jGThwPlZAREoPyo08ZFW1REqMdWgpnYrtlNAAUR
tBtTdGV2ZSBIaWVyIDxDSVMgNzA0MTMsMjY2MD4=
=K8Cl
-END PGP PUBLIC KEY BLOCK-



Building java

1998-08-04 Thread Sebastian Elbaum

I am building java from source code. I got to 
build it all(following th FAQ guide) and I can 
compile and run some programs.
What I have troubles with is when I try to use the
awt package. This is what I get at run-time:

/root/jdk/javasrc/build/lib/i586/green_threads/libawt.so: undefined
symbol: XtShellStrings (libawt.so)
java.lang.UnsatisfiedLinkError: no awt in shared library path
at java.lang.Runtime.loadLibrary(Runtime.java)
at java.lang.System.loadLibrary(System.java)
at 
at java.awt.Toolkit.getDefaultToolkit(Toolkit.java:402)
at java.awt.Window.getToolkit(Window.java:239)
at java.awt.Frame.addNotify(Frame.java:204)
at CalcFinGui.init(CalcFinGui.java)
at CalcFinGui.(CalcFinGui.java)
at CalcFinThread.run(CalcFinGui.java)



I am using lesstif (a version recommended by the FAQ). 
Thanks for your help


Sebastian

-
Sebastian Elbaum
Computer Science Department
University of Idaho
ID - USA
208-885-4077
-



Hanging appletviewer on 486

1998-08-04 Thread Tim Freeman


I have two Linux computers.  On one, a 486 Tandy 3950 laptop,
"appletviewer" with no arguments hangs before giving me the copyright
notice box.  On the other, a Gateway 2000 60 mhz Pentium, appletviewer
seems to work fine.  I have tried to minimize the differences between
the systems.

Any ideas?

Shared properties:
Same fonts.  xlsfonts returns the same list on both machine.
Same ld.so version; ldd -V returns 1.7.14
Same checksums for all the shared libraries, as determined by
   using sum on the libraries revealed by inserting calls to ldd in
   bin/java.
Same jdk version, 1.1.6v2.
More than 20MB swap, which doesn't get filled during the experiment
appletviewer uses libc.so.5 from lib/i586/green_threads
The command "java" starts on both systems well enough to complain that
   I didn't pass any command line arguments.

Unique properties of the laptop where it doesn't work:
XFree86 3.3.2
Linux 2.0.30 or 2.0.34
Slackware 3.1 from a CD (except I had to get a kernel from Slackware
   3.4 or 3.5 to boot it, and a XFree86 from Slackware 3.5 to run X.)
ldconfig -D prints:
ldconfig: version 1.8.2
/usr/local/lib:
/usr/X11R6/lib:
libXtst.so.6 => libXtst.so.6.1
libXt.so.6 => libXt.so.6.0
libXmu.so.6 => libXmu.so.6.0
libXi.so.6 => libXi.so.6.0
libXext.so.6 => libXext.so.6.1
libXaw.so.6 => libXaw.so.6.1
libXIE.so.6 => libXIE.so.6.0
libX11.so.6 => libX11.so.6.1
libSM.so.6 => libSM.so.6.0
libPEX5.so.6 => libPEX5.so.6.0
libICE.so.6 => libICE.so.6.0
libXpm.so.4 => libXpm.so.4.3
/usr/i486-linuxaout/lib:
/usr/openwin/lib:
/usr/lib:
libbfd.so.2.6.0.14 => libbfd.so.2.6.0.14
libopcodes.so.2.6.0.14 => libopcodes.so.2.6.0.14
libgdbm.so.2 => libgdbm.so.2.0.0
libdb.so.2 => libdb.so.2.0.0
libg++.so.27 => libg++.so.27.1.4
libstdc++.so.27 => libstdc++.so.27.1.4
libvgagl.so.1 => libvgagl.so.1.2.10
libvga.so.1 => libvga.so.1.2.10
/lib:
libdl.so.1 => libdl.so.1.8.2
libncurses.so.3.0 => libncurses.so.3.0
libtermcap.so.2 => libtermcap.so.2.0.8
libm.so.5 => libm.so.5.0.6
libgdbm.so.1 => libgdbm.so.1.7.3
libcurses.so.1 => libcurses.so.1.0.0
libc.so.5 => libc.so.5.3.12
libe2p.so.2 => libe2p.so.2.1
libss.so.2 => libss.so.2.0
libext2fs.so.2 => libext2fs.so.2.0
libcom_err.so.2 => libcom_err.so.2.0

Unique properties of the Gateway 2000, where it does work:
XFree86 3.2 (although if I copy the X server from the laptop and run
   in VGA mode, appletviewer still starts)
Linux 2.0.27 (I can't start X with 2.0.30 or 2.0.34; I would need to recompile
   to turn off extraneous mouse drivers.)
An old a.out slackware installation, manually upgraded to use elf.
ldconfig -D prints:
ldconfig: version 1.7.14
/usr/local/lib:
/usr/X11R6/lib:
libXtst.so.6 => libXtst.so.6.1
libXmu.so.6 => libXmu.so.6.0
libXi.so.6 => libXi.so.6.0
libPEX5.so.6 => libPEX5.so.6.0
libSM.so.6 => libSM.so.6.0
libXext.so.6 => libXext.so.6.1
libICE.so.6 => libICE.so.6.0
libXt.so.6 => libXt.so.6.0.elf
libXaw.so.6 => libXaw.so.6.1
libXIE.so.6 => libXIE.so.6.0
libX11.so.6 => libX11.so.6.1
libXt.so.3 => libXt.so.3.1.0
libXaw.so.3 => libXaw.so.3.1.0
libX11.so.3 => libX11.so.3.1.0
libXpm.so.4 => libXpm.so.4.3.a.out
/usr/i486-linuxaout/lib:
/usr/openwin/lib:
/usr/lib:
libform.so.3.0 => libform.so.3.0
libpanel.so.3.0 => libpanel.so.3.0
libmenu.so.3.0 => libmenu.so.3.0
libdb.so.1 => libdb.so.1.85.4
libbfd.so.2.6.0.14 => libbfd.so.2.6.0.14
libopcodes.so.2.6.0.14 => libopcodes.so.2.6.0.14
libvga.so.1 => libvga.so.1.2.10
libgdbm.so.2 => libgdbm.so.2.0.0p
libdb.so.2 => libdb.so.2.0.0p
libgr.so.1 => libgr.so.1.3
libtermnet.so.2 => libtermnet.so.2.2.4
/lib:
libncurses.so.3.0 => libncurses.so.3.0
libgdbm.so.1 => libgdbm.so.1.7.3
libdl.so.1 => libdl.so.1.7.14
libtermcap.so.2 => libtermcap.so.2.0.8
libm.so.5 => libm.so.5.0.6
libcurses.so.1 => libcurses.so.1.0.0p
libXt.so.3 => libXt.so.3.1.0
libXaw.so.3 => libXaw.so.3.1.0
libX11.so.3 => libX11.so.3.1.0
libc.so.5 => libc.so.5.3.12
libvga.so.1 => libvga.so.1.1.8.a.out
libm.so.4 => libm.so.4.6.27
libc.so.4 => libc.so.4.6.27

-- 
Tim Freeman   
[EMAIL PROTECTED]http://www.infoscreen.com/resume.html
Web-centered Java, Perl, and C++ programming in Silicon Valley or offsite



jdk 1.1.6v2 and glibc-2.0.95 :(

1998-08-04 Thread Nikolay Grigoriev

Hello!

JDK 1.1.6 (glibc version) does not work with glibc-2.0.95 (it's glibc 2.1
AFAIK?) :((( It's because of incompatibilites between supplied with JDK 
libc.so.6 and my own libc.so.6. I tried to solve them by manipulating some of my
libraries, but is was useless :( 

-- 
   Nickolay G. Grygoryev[EMAIL PROTECTED]
   St.Petersburg, Russia2:5030/580@fidonet



Servlets on linux

1998-08-04 Thread Alejandro Canales


Hi!

I am developing servlets on linux. They work perfectly if I don't
use JDBC. With JDBC I lost the output when any function of JDBC is called.
I use PrintStream, PrintWriter for handle the output.

Any Hint???

Someone has experimented something like this

Saludos
A Canales




JDK 1.2

1998-08-04 Thread Marcus Brito

Do you have any plans about porting JDK 1.2 to Linux (i386)? Or are you
waiting for the final version? A preliminar work on the beta releases
would be fine, I think - then when the final version is out, OUR final
version won't delay a lot.

-- 
Ja ne,
   Marcus Pazu Brito
   Mailto: [EMAIL PROTECTED]
   PGP key avaiable at http://pazu3.dyn.ml.org
   Salvador, cidade dos sonhos

"Magic is real unless declared as integer"