Re: Unidentified subject! [Makefile problem]

1998-11-25 Thread Karthik Vishwanath
On Wed, 25 Nov 1998, Ramesh Babu A. wrote: > > JAVAC = /usr/local/jdk116/bin/ > Hi Ramesha, Well, i am suprised that the make file u showed even runs! if JAVAC is defined as a *path* only, how does 'make' understand what

Re: [rtl] Re: Java and rtl (was LabView for Linux)

1998-11-25 Thread Donald Gaffney
Cool Project! I'd love to see your FAQ entries for both the flash and Java. Thanks, -Don --- [rtl] --- To unsubscribe: echo "unsubscribe rtl" | mail [EMAIL PROTECTED] OR echo "unsubscribe rtl " | mail [EMAIL PROTECTED] For more information on Real-Time Linux see: http://www.rtlinux.org/~rt

Re: Linux Takes Lead in Server-Side Java Performance /IW November 23, 1998

1998-11-25 Thread Matola, Tod
I agree it is good to see (yeah Linux), but it is also a strange comparison. But my point was, is Micro$oft's sdk really a TRUE JVM? Didn't they buy performace at the cost of portablity? Don't they play funny games with the low level calls that get close to the OS? I have no first hand knowledge

A very elementary question ?

1998-11-25 Thread Mehrdad Jahansoozi
Hi, I installed JDK 117 on a newly and painfully installed Linux Red Hat 5.1 I wrote a small Java program. When I type /MyJavaDir/jdk117/bin/javac /MyyestDir//Test.java Test.class is generated Then I type /MyJavaDir/jdk117/bin/java /MyyestDir//Test I get a message invalid class name: /

Re: Linux Takes Lead in Server-Side Java Performance /IW November 23, 1998

1998-11-25 Thread Scot P. Floess
I agree. Tower J is somewhat limited in terms of full java capabilities, ie compiles the complete application before hand. Now if the linux JVM were to perform as well as some *other* vendor's JVM, we would all have great reason to celebrate! Please do not misunderstand, I love linux and java.

Re: Linux Takes Lead in Server-Side Java Performance /IW November 23, 1998

1998-11-25 Thread Bryce McKinlay
Although this is good to see, it is hardly fair to compare a native code compiler (a commercial one, at that) against a true JVM (which in Microsoft's case was only slightly slower) regards [ bryce ] Mario Camou wrote: > Hi all, > > Check this out (I'm not including the full text in the int

Linux Takes Lead in Server-Side Java Performance /IW November 23, 1998

1998-11-25 Thread Mario Camou
Hi all, Check this out (I'm not including the full text in the interest of conserving bandwidth): http://www.internetworld.com/print/current/webdev/19981123-java.html Way to go!

Re: JDBC-ODBC bridge

1998-11-25 Thread Martin Little
I'm intrested in what you believe you can do with an ODBC bridge driver that you can't do with a pure java driver? ../Martin "Jens E. Wunderwald" wrote: > Hi, > > I would like to use the JDBC-ODBC bridge under Linux, but could not find > it included in the Blackdown JDK port. The bridge from Su

Re: [rtl] Re: Java and rtl (was LabView for Linux)

1998-11-25 Thread James Cassidy
I've built a couple of scripts to build a tiny RTLinux system from a full system for the flash disk. I can put it on the net if anyone is interested. I've got another to prepair the flash disk and install everything. I've got a desktop system with two IDE interfaces that I use to plug both th

Re: Netscape/CLASSPATH question

1998-11-25 Thread peter . pilgrim
Excuse me. Yes Micheal is absolutely right, about unsetting CLASSPATH. Must you put a jar in the ${MOZILLA_HOME}/java/classes? __ Reply Separator _ Subject: Re: Netscape/CLASSPATH question Author: Michael.Sinz ([EMAIL PROTECTED]) at lon

Re: How to Write MakeFile ?

1998-11-25 Thread Catalin CLIMOV
Hi, Here is a patch a wrote so you can use "mmake" with SourceNavigator. When you press the "make" button in SN, it will give the filename to the make command, and this may be a problem , especially when you have your sources in a directory structure that reflects the packages. Just pu

Re: How to Write MakeFile ?

1998-11-25 Thread Vincent Trussart
Since this question shows up from time to times... I will answer it from time to times... :) I just updated my JAppTemplate ( a makefile and a directory structure that show how to use it) to version 0.2 Back in september, when I first announced this on this mailing list, I got nice feedback...

JDBC-ODBC bridge

1998-11-25 Thread Jens E. Wunderwald
Hi, I would like to use the JDBC-ODBC bridge under Linux, but could not find it included in the Blackdown JDK port. The bridge from Sun only runs under Solaris and Windows. Note that using a pure Java JDBC access to a database does not meet my demands. Ciao Jens

Re: How to Write MakeFile ?

1998-11-25 Thread java
Heres a simple Makefile I use. BIN = /home/jarvi/java/gps/bin/ JAVAC = javac JFLAGS= -d /home/jarvi/java/gps/bin -O JFILES := $(patsubst %.java,$(BIN)%.class,$(wildcard *.java)) SUBDIRS = almanac misc route trackpoint waypoint rxtx .SUFFIXES:.class .java $(BIN)%.class:

Re: Netscape/CLASSPATH question

1998-11-25 Thread peter . pilgrim
I had to name it explicitly at work (sparc-sun-solaris-2.5.1) and home (i586-slackware-linux-gnulib1) to get Netscape to work. export CLASSPATH=...:${MOZILLA_HOME}/java/classes/java40.jar:... Pete __ Reply Separator _ Subject: Re: Ne

Re: How to Write MakeFile ?

1998-11-25 Thread shieldsd
Jikes supports the +M option for use in generating Makefiles. [EMAIL PROTECTED] http://www.ibm.com/research/jikes

RE: CLASSPATH confusion

1998-11-25 Thread Michael Sinz
On Wed, 25 Nov 1998 14:28:53 +0200, Jaco Greeff wrote: >> Actually, in JDK 1.1, CLASSPATH does not need to be set to >> get the core Java classes.zip file. The Java wrapper does that. > >Ok. That makes sense. I actually found this out without even trying and was >quite surprised! > >> The othe

RE: CLASSPATH confusion

1998-11-25 Thread Jaco Greeff
> Actually, in JDK 1.1, CLASSPATH does not need to be set to > get the core Java classes.zip file. The Java wrapper does that. Ok. That makes sense. I actually found this out without even trying and was quite surprised! > The other thing that would be good is a standard place to put > jar/zi

RE: CLASSPATH confusion

1998-11-25 Thread Michael Sinz
On Wed, 25 Nov 1998 07:38:11 +0200, Jaco Greeff wrote: >> Having it "fixed" in 1.2 won't help us > >Sorry for the total ignorance, but I've been hearing a lot about the >CLASSPATH that doesn't need to be set in 1.2. Is this true? Where does >"java" (1.2) look for the jar/zip/class files then? Or

Re: How to Write MakeFile ?

1998-11-25 Thread jh
[EMAIL PROTECTED] writes: > How to write MakeFile for Java in Linux ? Have a look at http://www.tildeslash.com/mmake -- Jan-Henrik Haukeland

How to Write MakeFile ?

1998-11-25 Thread Ramesh Babu A.
Hi, How to write MakeFile for Java in Linux ? Here I have snippet of makefile code. But it does not working properply (When I each time give cmd like make -f MakeFile, it compiles each java files even it's time is not modified.) If anyb

Unidentified subject!

1998-11-25 Thread Ramesh Babu A.
Hi, How to write MakeFile for Java in Linux ? Here I have snippet of makefile code. But it does not working properply (When I each time give cmd like make -f MakeFile, it compiles each java files even it's time is not modified.) If anybody kno

AWT Font mapping to ISO 8859-2 in X11 problem

1998-11-25 Thread Michal Fadljevic
Hi, I have couple of Java classes (AWT stuff) that use Label-s, TextField-s TextArea-s and my own Panel subclass Text - simple text editor. So far so good. Everything works well well under Win{95,NT} but on Linux I have trouble setting font mapping to ISO 8859-2 fonts under X11. Yes, I've read

CORBA/JDK1.2

1998-11-25 Thread Christopher Rowan
You guys are all amazing! Great work! I hope you won't mind me asking when the Linux world can hope to see Java IDL, or JDK1.2? Thanks for any hints. I am starting a project that requires CORBA. I want to do it on Linux if it all possible... -- Christopher Rowan +81-3-

Document Writing Tool

1998-11-25 Thread Jason Dillon
Hey there... this does not really have any direct relationship to either of these groups... though the product that I need to document does embody both qualities... anyways do any of you know of a good documentation generation tool. I need to get some higher level docs written up so that I don't

RE: CLASSPATH confusion

1998-11-25 Thread Jaco Greeff
> Having it "fixed" in 1.2 won't help us Sorry for the total ignorance, but I've been hearing a lot about the CLASSPATH that doesn't need to be set in 1.2. Is this true? Where does "java" (1.2) look for the jar/zip/class files then? Or will it still need to be specified? Ok, doesn't have anythin