I want to volunteer
I would like to volunteer for helping port the JDK on the LINUX platform. I would be very interested in areas which requires C programming, Java programming and/or automated regression test. Please send me the details on how could I help! Thanks! Vikas __ Get Your Private, Free Email at http://www.hotmail.com
Re: Xsql
Whats the problem ? __ Reply Separator _ Subject: Re: Xsql Author: duan ([EMAIL PROTECTED]) at lon-mime Date:13/10/98 08:39 hi I am wondering if anyone in the list is using Xsql?It is a Java based database editor.I am trying to get it to work but to no avail.I keep getting lots of error.If someone out there maybe he/she can help me. Peter are you in here?I cannot login into a database...:( thanks regards duan
Re: Hogging colours?
Have try running your X in 16 bit colour mode! runx -- bpp16 -- Or something like that __ Reply Separator _ Subject: Re: Hogging colours? Author: sbb ([EMAIL PROTECTED]) at lon-mime Date:08/10/98 07:46 Dustin Lang writes: > > Hi, > > I was looking at some stuff I wrote a long time ago (before I had a sane > operating system *grin*), that does something similar to 'xlock -mode > swirl' (makes pretty wavy things). When I ran it in X, instead of > hundreds of colour I got 4. It's not nearly so pretty in 4 colours. > *pout* Does anyone know how to make java be more assertive in its demands > to use many colours? My hardware is able to do 64k colours and at the > moment I have X configured to use 256. Do you already have Netscape running? It's known to be a colormap hog. Can you restart your X session (I mean log all the way out, not just restart your windowmanager) and just run your Java program w/o starting a bunch of other X applications? Does that help? Steve
Java language question: static classes ?
I was looking at the Kim Topley "Core JFC" book particularly a convenience class to swith the Swing/JFC PL&F (Chapter 13) the other day I found it was declared like ? protected static class SwitchPLAFClass { private Frame f; private LookAndFeelInfo lfi ... } What is a static class? I am guessing it is sharable entity. Pete
Re: Working Button mnemonics under Linux Java?
Ah ha! that would explain the current problem I have on my old fvwm2.0 stuff. ALT - CURSOR KEYS shift across Virtual Screen Look at the File menu title, set if the F is underlined. Look at the Ok button see if the o is underlined. I had a problem a few months ago where my .fvwmrc file removed decorations from any transient window! Consequently anything derived from Dialog could not be resized (And I thought it was the JDK too.) Pete BTW: Where can I get a copy `xev' I cant find it on system at home __ Reply Separator _ Subject: Re: Working Button mnemonics under Linux Java? Author: Michael.Sinz ([EMAIL PROTECTED]) at lon-mime Date:15/10/98 17:42 On Thu, 15 Oct 1998 12:29:30 -0400 (EDT), Jim Burmeister wrote: >Eu Hin Chua <[EMAIL PROTECTED]> wrote: > >> Has anyone ever managed to get keyboard mnemonics working for JButtons >> using Swing? >> >> e.g. >> >> OKButton.setMnemonic('o'); >> >> Under windows 95/8/NT, all of my code (including the SwingSet demo) >> performs as expected, with the ALT key being used to activate the mnemonic >> for both buttons and menu items. Under Linux, nothing happens at all. > >Swing button mnemonics work just fine for me, both in standalone buttons >and menus. I've used them in my own code, and I also just checked the >SwingSet demo and it works OK too. I did nothing special to set them up; >pressing Alt+key has always just worked. > >Here's my setup: > > Red Hat Linux 5.0 w/upgraded glibc libraries > Blackdown JDK 1.1.6v4a > Swing 1.0.3 > Metro-X 4.3 X server > >Chances are, the problem is not with the JDK; it's with the way you have your >X server configured. Are you able to use the Alt key in other X applications? >Check your .xinitrc or .xsession script for "xmodmap" commands; if you've used >xmodmap to reconfigure your keyboard, the Alt keys might be generating keysyms >other than what the JDK is expecting. You can use the "xev" program to see >whay keysyms your Alt keys are generating; here's what the output looks like >on my system, for the left and right Alt keys respectively. The keysym on >the third line is what's important: it should be "Alt_L" and "Alt_R". Note also that many users may have the window manager set up to use the alt key for their own use. Many of the alt key strokes a friends machine do window operations or scrolling operations or desktop operations. >-Jim Burmeister, Metro Link Incorporated <[EMAIL PROTECTED]> Thanks for your answer Jim - There are so many places where the configuration in unix systems can "confuse" users. Michael Sinz -- Director of Research & Development, NextBus Inc. mailto:[EMAIL PROTECTED] - http://www.nextbus.com My place on the web ---> http://www.users.fast.net/~michael_sinz
Re: Java language question: static classes ?
> What is a static class? Making classes static has good sense if they are nested. Usually nested class object has hidden member referencing high level class object and hidden constructor parameters. But static nested class is just like a high level class. By the way, static public class nested in another public class is the single method I know to define more than one public class in one file. I have no idea whether static classes are syntaxically allowed on the top level. I think it does not matter -- all such classes are actually static in all senses I can image. Hope this helps. Pavel
Re: Another Classpath question
Hi Al, First of all: good thing you started off with Java, especially using Linux. Just a tip. You do realize that Java has a Date class similar to the one you've written, don't you? It's in the package java.util, docs are online at: http://www.javasoft.com/products/jdk/1.1/docs/api/java.util.Date.html Good luck. Ernst Alton Goodman wrote: > I'm attempting to learn java using the tutorial at java.sun.com. My > platform is Linux 2.0.30, a Slackware install. I installed jdk1.1.6v4a > per the instructions in the README file. I haven't set the CLASSPATH > env variable. > > So I wrote a program Date.java and placed it in a package named > packages. packages is a subdirectory in my home directory. Here is a > snippet: > package packages; > > import java.lang.*; > import java.util.StringTokenizer; > > public class Date extends Object { > private int iMM = 1; > private int iYY = 1998; > private int iDD = 1; > . > . > . > public static void main( String[] args ) { > int i = 0; > Date[] d1 = { > new Date( 12, 9, 2010 ), > new Date( 0, 9, 2010 ), > new Date( 12, 0, 2010 ), > new Date( 12, 9, 0 ), > new Date( 2, 29, 2000 ), > new Date( 2, 29, 2001 ), > new Date( 2, 29, 2004 ), > new Date( 10, 7, 1998 ), > new Date( "February", 14, 1999 ), > new Date( "February", 29, 2000 ), > new Date( "February", 29, 2001 ), > new Date( "5/22/1972" ), > new Date( "2/29/1972" ), > new Date( "2/29/2000" ), > new Date( "2/29/1973" ) > }; > } > > I moved Date.class to ~/packages and rm'd Date.java and Date.class from > the subdirectory that they had been created in. Then I wrote > Testdate.java to test Date.class :). Testdata.java: > import packages.Date; > > public class Testdate { > public static void main( String[] args ) { > > Date d1 = new Date( 2 , 25, 2000 ); > > System.out.println( d1.getDate() ); > } > } > > BTW, Date.java does have a constructor and an accessor function. I > compile Testdate.java using: > javac -classpath .:~/:/opt/jdk1.1.6v4a/lib/classes.zip Testdate.java > > The compile executes without warnings or errors. But when I attempt to > run the app using: > java -classpath .:~/:/opt/jdk1.1.6v4a/lib/classes.zip Testdate.class > java complains that it cannot find Testdate.class. > > Could someone help me? I'm purposefully created a class that would have > a name clash in attempting to learn packages. > > Thanks in Advance, > Al -- +-+ | "Come to me all you who are weary and burdened, and I | | will give you rest." | | | | -- Jesus Christ (Mt. 11:28) | +---+-+ | Ernst de Haan | email [EMAIL PROTECTED]| | Java programmer | web members.xoom.com/znerd/ | +---+-+
Re: setup question--aka, lifeless javac with RedHat 5.0 and jdk116_v5
I am apparently who started this thread. I took everyone's suggestion and just now downloaded the updated glibc from RedHat named glibc-2.0.7-19.i386.rpmSuddenly jdk116_v5 started to work! If you're still having trouble, you can get it at ftp://sunsite.unc.edu/pub/Linux/distributions/redhat/updates/5.0/i386/ At 11:05 AM 10/15/98 -0400, Michael Sinz wrote: >On Thu, 15 Oct 1998 07:44:31 -0400, Jim Ridenour wrote: > >> First let me say I'm new to Linux, but I do run other programs on it >>successfully. >>I have two questions: >> >>1. On Blackdown's mirror sites for JDK116_v5 they have two files beginning >>with jdk... and differing only by the letter "b" toward the end. The one >>without the "b" appears to be the one I want and uncompresses to the JDK. >>The one with the "b" on the end won't even uncompress. What is it? > >We have started to release the files in both tar.gz and tar.bz2 format. >The bz2 compression format (bzip2) is a new compression system that >happens to do a nice job on the JDK (saving a bit over 10% in size and >since the archive is over 10megs that means over 1meg smaller archives) > >Many people do not have bzip2 support on their systems. Plus, tar.gz >is a well established format that works on almost all platforms (including >Windows/WinZIP) tar.gz also uses much less RAM to decompress a file. >(bzip2 can use a lot of memory to do a decompress and the memory it >takes depends on the way the file was compressed) > >The main reason we are trying bzip2 format is to see if people really >want it due to the smaller file sizes. (Not all files are smaller) >I know it takes me twice as long to upload the two different formats >and thus I would like to have only one, but since I do the upload in >auto-pilot mode while I am away from my machines usually, it does not >bother me too much) > >>2. Having uncompressed JDK116v5 (the one without the "b" at the end) it >>creates all the directories to hold the jdk. If I go into /jdk116v5/bin >>and create a test.java file and then invoke "javac test.java", nothing >>happens. I just get a command prompt back. No test.class file is created, >>no errors, no messages, nothing. Both the test.java and the javac are in >>that directory so paths shouldn't be the problem. Any ideas? > >Hmmm... I don't have an idea right now. I normall add the jdk116v5/bin >directory to my path and do my work elsewhere. > >>PS I should say this is on RedHat 5.0 and I used their package manager to >>remove all Kaffe files. Also, I am using the glibc version which by the >>tests Blackdown describes for telling which library you have, is the one I >>need. > >Thanks for that PS. I build the glibc libraries on RedHat 5.0 (albeit >updated to current releases of the kernel and other security/bug fixes) > >What happens if you just type "java -version" or "javac" > >The first should give you the version of the java system you are running >and the second should output the compiler options. If this does not >happen, try doing "which java" or "which javac" to find out where things >may be coming from. > > >Michael Sinz -- Director of Research & Development, NextBus Inc. >mailto:[EMAIL PROTECTED] - http://www.nextbus.com >My place on the web ---> http://www.users.fast.net/~michael_sinz > > > >
Re: Java language question: static classes ?
Correct me if I'm wrong, but I do not believe top-level classes can have the 'static' modifier applied, but if you want a shared entity, do something like this: public class DefaultFactory extends AbstractFactory { protected DefaultFactory() { /* empty */ } // or private if you wish public final static DefaultFactory SHARED_INSTANCE = new DefaultFactory(); ... } This is how I create shared entities (for example in JUMP, a framework for numeric computations). The only potential problem you have here is performance, if a piece of code synchronizes on the shared instance. But then again, _most_ shared entities do not have state, so they should not have to be synchronized. Malicious code could, however, cause a lifelock problem by synchronizing on the shared entity and letting go... GreetinX++, Ernst Pavel wrote: > > What is a static class? > Making classes static has good sense if they are nested. Usually nested > class object has hidden member referencing high level class object and > hidden constructor parameters. But static nested class is just like a > high level class. By the way, static public class nested in another > public class is the single method I know to define more than one public > class in one file. I have no idea whether static classes are > syntaxically allowed on the top level. I think it does not matter -- all > such classes are actually static in all senses I can image. > > Hope this helps. > > Pavel -- +-+ | "Come to me all you who are weary and burdened, and I | | will give you rest." | | | | -- Jesus Christ (Mt. 11:28) | +---+-+ | Ernst de Haan | email [EMAIL PROTECTED]| | Java programmer | web members.xoom.com/znerd/ | +---+-+
Re: Java language question: static classes ?
Weirdo So public static SwitchPLAFAction { ... } is a just java object class that is really instantied just once, like some sort of singleton? Actually I have used a modified version of the ActionEvent class from Kim Topley "Core JFC" example in Xsql as an inner class. So now Xsql can switch PLAFs too. It works, but I still dont understand public static class ? I cant find a reference to it in "Exploring Java". I will see if I can borrow back "Core Java" this weekend. Pete __ Reply Separator _ Subject: Re: Java language question: static classes ? Author: Ernst.deHaan ([EMAIL PROTECTED]) at lon-mime Date:16/10/98 13:08 Correct me if I'm wrong, but I do not believe top-level classes can have the 'static' modifier applied, but if you want a shared entity, do something like this: public class DefaultFactory extends AbstractFactory { protected DefaultFactory() { /* empty */ } // or private if you wish public final static DefaultFactory SHARED_INSTANCE = new DefaultFactory(); ... } This is how I create shared entities (for example in JUMP, a framework for numeric computations). The only potential problem you have here is performance, if a piece of code synchronizes on the shared instance. But then again, _most_ shared entities do not have state, so they should not have to be synchronized. Malicious code could, however, cause a lifelock problem by synchronizing on the shared entity and letting go... GreetinX++, Ernst Pavel wrote: > > What is a static class? > Making classes static has good sense if they are nested. Usually nested > class object has hidden member referencing high level class object and > hidden constructor parameters. But static nested class is just like a > high level class. By the way, static public class nested in another > public class is the single method I know to define more than one public > class in one file. I have no idea whether static classes are > syntaxically allowed on the top level. I think it does not matter -- all > such classes are actually static in all senses I can image. > > Hope this helps. > > Pavel
Re: Working Button mnemonics under Linux Java?
> ... - There are so many places where the > configuration in unix systems can "confuse" users. I have this problem too with my slackware v3.5, and i dont even know how to change the buttons. I got the attached from java Tutorial. It ignores alt-i but it registers a button press when i hit the spacebar...! jim watson import com.sun.java.swing.*; import java.awt.*; import java.awt.event.*; public class HelloSwing extends JFrame implements ActionListener { private JLabel label; private static String labelPrefix = "Number of button clicks: "; private int numClicks = 0; public HelloSwing() { super("HelloSwing"); //XXX: In 1.0.2 only, must use FixedJButton instead of JButton //XXX: if you want mnemonics to work. //XXX: See ui/swing/workaround.html for details. JButton button = new JButton("I'm a Swing button!"); button.setMnemonic('i'); button.addActionListener(this); button.getAccessibleContext().setAccessibleDescription( "When you click this button, the label is updated " + "to display the total number of button clicks."); label = new JLabel(labelPrefix + "0"); JPanel pane = new JPanel(); pane.setBorder(BorderFactory.createEmptyBorder(30, 30, 10, 30)); pane.setLayout(new GridLayout(0, 1)); pane.add(button); pane.add(label); setContentPane(pane); } public void actionPerformed(ActionEvent e) { numClicks++; label.setText(labelPrefix + numClicks); } public static void main(String[] args) { try { UIManager.setLookAndFeel( UIManager.getCrossPlatformLookAndFeelClassName()); } catch (Exception e) { System.err.println("Couldn't use the cross-platform " + "look and feel: " + e); } JFrame frame = new HelloSwing(); WindowListener l = new WindowAdapter() { public void windowClosing(WindowEvent e) { System.exit(0); } }; frame.addWindowListener(l); frame.pack(); frame.setVisible(true); } }
Re: Java Plugin doesn't work
Robert P. Biuk-Aghai wrote: > > I installed the Java Plugin (activator-linux-glibc) on Linux 2.0.34 > with Netscape 4.06. At the end of installation I'm told: > > Java(TM) Plug-in installation done. > > but in the Netscape window it says: > > You do not have the Java(TM) Plug-in installed. > > I tried this several times. The first time round, it said something > about unreferenced symbol: stat, or something like that. I have not > been able to reproduce this message later, however. > I got it to work by setting the NPX_PLUGIN_PATH environment variable. (It's in one of the FMs...) IIRC, it isn't supposed to be needed for a default installation, but the plugin suddenly started working when I set it anyhow. In my case I set NPX_PLUGIN_PATH=/home/pdlamb/.netscape/plugins export NPX_PLUGIN_PATH in my .bashrc. Pat > I have the JDK 1.1.6v2 glibc port and following libraries: > > libc-2.0.7.so > libdl-2.0.7.so > ld-2.0.7.so > > java -version says: > > java version "1.1.6" > > I realize that this is one minor version higher than what it says in > the README at Blackdown, but would really not like to downgrade my > setup just to get the Plugin to work. Is is possible to make it work > with my current setup, and if so, how? > > Robert. > > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > Robert P Biuk-Aghai, University of Macau, Faculty of Science and Technology > http://hyperg.sftw.umac.mo/robert/tel: +853-3974365fax: +853-838314 > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > Microsoft isn't the answer. Microsoft is the question and the answer is no. -- Alcohol and calculus don't mix. Never drink and derive. Patrick Lamb, Ph.D. [EMAIL PROTECTED] (256) 837-5282 x1253 voice, (256) 830-0287 FAX With all my employer's PR people, they can tell you the company opinion. If it has one...
Re: Java language question: static classes ?
I think I am fast asleep of course it is STATIC MEMBER. __ Reply Separator _ Subject: Re: Java language question: static classes ? Author: Peter Pilgrim at London Date:16/10/98 13:11 Weirdo So public static SwitchPLAFAction { ... } is a just java object class that is really instantied just once, like some sort of singleton? Actually I have used a modified version of the ActionEvent class from Kim Topley "Core JFC" example in Xsql as an inner class. So now Xsql can switch PLAFs too. It works, but I still dont understand public static class ? I cant find a reference to it in "Exploring Java". I will see if I can borrow back "Core Java" this weekend. Pete __ Reply Separator _ Subject: Re: Java language question: static classes ? Author: Ernst.deHaan ([EMAIL PROTECTED]) at lon-mime Date:16/10/98 13:08 Correct me if I'm wrong, but I do not believe top-level classes can have the 'static' modifier applied, but if you want a shared entity, do something like this: public class DefaultFactory extends AbstractFactory { protected DefaultFactory() { /* empty */ } // or private if you wish public final static DefaultFactory SHARED_INSTANCE = new DefaultFactory(); ... } This is how I create shared entities (for example in JUMP, a framework for numeric computations). The only potential problem you have here is performance, if a piece of code synchronizes on the shared instance. But then again, _most_ shared entities do not have state, so they should not have to be synchronized. Malicious code could, however, cause a lifelock problem by synchronizing on the shared entity and letting go... GreetinX++, Ernst Pavel wrote: > > What is a static class? > Making classes static has good sense if they are nested. Usually nested > class object has hidden member referencing high level class object and > hidden constructor parameters. But static nested class is just like a > high level class. By the way, static public class nested in another > public class is the single method I know to define more than one public > class in one file. I have no idea whether static classes are > syntaxically allowed on the top level. I think it does not matter -- all > such classes are actually static in all senses I can image. > > Hope this helps. > > Pavel
Re: Java language question: static classes ?
> So public static SwitchPLAFAction { ... } is a just java object class > that is really instantied just once, like some sort of singleton? No, no. I did not mean that static classes are related to singletons. They are not AFAIK. > Actually I have used a modified version of the ActionEvent class from > Kim Topley "Core JFC" example in Xsql as an inner class. So now Xsql can > switch PLAFs too. It works, but I still dont understand public static class ? This is an example of what I want to say: // File A.java public class A { ... public class B { ... } } // End of file // File C.java public class C { ... public static class D { ... } } // End of file You can use both classes A.B or C.D in any packages such as both of them are public. But A.B class has one additional hidden member of A class and requires one additional constructor parameter of A type (in default "no-arg" constructor) if you create it outside of A class scope. C.D class is just like usual Java top level public class. That's all I know about static classes Hope this will help. Pavel // > > I cant find a reference to it in "Exploring Java". I will see if I can > borrow back "Core Java" this weekend. > > Pete .. > Correct me if I'm wrong, but I do not believe top-level classes can have > the 'static' modifier applied, but if you want a shared entity, do > something like this: > > public class DefaultFactory >extends AbstractFactory > { >protected DefaultFactory() { /* empty */ } // or private if you wish >public final static DefaultFactory SHARED_INSTANCE = new > DefaultFactory(); >... > } > > This is how I create shared entities (for example in JUMP, a framework for > numeric computations). The only potential problem you have here is ...
RE: Sun's ORB & Java-Linux
-- | From: gutier / mime, , , [EMAIL PROTECTED] | To: java-linux / mime, , , [EMAIL PROTECTED] | Subject: Sun's ORB & Java-Linux | Date: Wednesday, October 14, 1998 4:14AM | | Has anyone got Sun's ORB to work with Linux's Java port ? I'd like to | use CORBA with Java but it says on Sun's web page that JavAIDL is for | JDK1.2 only. It'd also be great if the ORB is actually stable. | Suggestions for alternative ORBs perhaps ? I have used only the client part of the ORB from under Linux. What I did was I stripped the CORBA related class files from JDK1.2beta3 and put those in a separate file e.g. OMGCORBA.zip. However I could not get the nameserver to work under Linux. It said something like: "Not supported under Linux".. if I remember correctly. Additionally you still need a IDL compiler... Maybe is http://www.ooc.com provides a good option like David Lucas suggested... | | Thanks. |
Java access to syslog?
Is there a class (or other simple way) to have a running program open and use the Unix/Linux syslog utility? Greg Cook
glibc question
An offpoint but related question Does anyone know of an easy way to get the glibc source files installed? The latest version from gnu is 2.0.6 (btw, how can redhat have a later version that gnu itself...) and the latest srpm from redhat is version 2.0.7-13. I need the source files for debugging. Anyone know of a convenient way to get the right source installed without making everything get messed up? Thanks, Mark On Fri, 16 Oct 1998, Jim Burmeister wrote: > Regarding upgrading glibc on Red Hat 5.0, Michael Sinz wrote: > > > Since you most resently fought with the problem, what is the best answer > > here? (Other than to fix the wording to recommend to update to a known > > working version of glibc. 2.0.7-19 seems to be a good one) > > It sounds like that's the best solution. Just put something in README.linux > that says something like: > > Users of Red Hat Linux 5.0 that have never upgraded their glibc packages > need to do so in order for the JDK to work properly. The version of > glibc that ships with Red Hat 5.0 has bugs that will cause segmentation > faults and other problems when using the JDK. Upgrading to the > glibc-2.0.7-19 package available at ftp.redhat.com is recommended. > > If desired, you can also mention the security and other fixes in the updated > glibc, in case you think people need more convicing that the upgrade is a > good idea. > > -Jim Burmeister <[EMAIL PROTECTED]> >
RE: Java access to syslog?
There is a syslog class from www.acme.com. --jason On 16-Oct-98 Greg Cook wrote: > Is there a class (or other simple way) to have a running program open and use > the Unix/Linux syslog utility? > > Greg Cook
Re: Java Plugin doesn't work
Hi, I was about to install the java plugin a couple of weeks ago, but then I realized that the java version in the latest netscape was actually more current than in the plugin. I'm not at my machine right now, or I tell you what the exact version is...it's either 4.06 or 4.5pre. In either case, 4.05 didn't work with the scrollPane class and the upgrade worked. Hope this helps, --Fred
Zero sized display panes from recompiled jdk
Im getting very small display panes which cannot be resized from my recompiled jdk1.1.6v5. The down-loaded jdk works fine. I suppose i'm not loading lessTif correctly. Any ideas about where to start? -John Campbell
Re: glibc question
On Fri, 16 Oct 1998 18:21:02 -0400 (EDT), [EMAIL PROTECTED] wrote: > >An offpoint but related question Does anyone know of an easy >way to get the glibc source files installed? The latest version >from gnu is 2.0.6 (btw, how can redhat have a later version that >gnu itself...) and the latest srpm from redhat is version 2.0.7-13. > >I need the source files for debugging. Anyone know of a convenient >way to get the right source installed without making everything >get messed up? Well, if you are RPM enabled, just install the SRPM. Michael Sinz -- Director of Research & Development, NextBus Inc. mailto:[EMAIL PROTECTED] - http://www.nextbus.com My place on the web ---> http://www.users.fast.net/~michael_sinz
Re: Zero sized display panes from recompiled jdk
On Fri, 16 Oct 1998 17:15:04 -0600, John Campbell wrote: >Im getting very small display panes which cannot be resized >from my recompiled jdk1.1.6v5. The down-loaded jdk works >fine. I suppose i'm not loading lessTif correctly. Any ideas >about where to start? -John Campbell This is one of the LessTif problems that I know of. From the last LessTif build I did it still was a problem. It works correctly in every Motif build (1.2, 2.0, and 2.1) Michael Sinz -- Director of Research & Development, NextBus Inc. mailto:[EMAIL PROTECTED] - http://www.nextbus.com My place on the web ---> http://www.users.fast.net/~michael_sinz
Re: Zero sized display panes from recompiled jdk
On Fri, 16 Oct 1998 17:15:04 -0600, John Campbell wrote: >Im getting very small display panes which cannot be resized >from my recompiled jdk1.1.6v5. The down-loaded jdk works >fine. I suppose i'm not loading lessTif correctly. Any ideas >about where to start? -John Campbell This is one of the LessTif problems that I know of. From the last LessTif build I did it still was a problem. It works correctly in every Motif build (1.2, 2.0, and 2.1) Michael Sinz -- Director of Research & Development, NextBus Inc. mailto:[EMAIL PROTECTED] - http://www.nextbus.com My place on the web ---> http://www.users.fast.net/~michael_sinz
Re: Working Button mnemonics under Linux Java?
Dear All, Tell me how to unsubscribe this service.I am a know nothing in java who does not have enough time to learn too. Thank you, Yours Truly, Guha Prakash -- > From: Jim Burmeister <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Cc: Eu Hin Chua <[EMAIL PROTECTED]> > Subject: Re: Working Button mnemonics under Linux Java? > Date: Friday, October 16, 1998 11:52 PM > > Eu Hin Chua <[EMAIL PROTECTED]> wrote: > > > It is bothering me that a considerable number of above-average users > > (some much more competent than myself), using a variety of distributions, > > jdk releases and swing libraries have singularly and independently > > also failed to get mnemonics functioning. As mentioned, a large variety > > of window managers have been used on these machines (fvwm, fvwm95, > > AfterStep, WindowMaker, KDE, icewm, Enlightenment), and the Alt keys have > > always worked in our applications (e.g. Netscape, KDE programs, nedit). > > > > It is more puzzling that many of these systems have been "straight out of > > the box" Redhat 5.1 and Debian 2 installs (with all updates applied), they > > have not been tweaked or heavily modified in any way. The only major > > difference I can discern between the setup of our machines and yours is > > that we all use XFree86 servers (SVGA for Matrox Cards, S3, S3 Virge, and > > XSuse Matrox) in contrast to your Metrolink server. > > I did some more tests of my own, and found that it is in fact related to > XFree86. Running Metro-X, Swing mnemonics work; under XFree86 3.3.2.3 > they do not, with everything else the same. > > I'll investigate some more and try to figure out why this is, and if there > is a workaround or fix. In the meantime, you could always buy Metro-X > (only $39)... :-) > > -Jim Burmeister, [EMAIL PROTECTED] >
Re: glibc question
On Fri, 16 Oct 1998, Michael Sinz wrote: > On Fri, 16 Oct 1998 18:21:02 -0400 (EDT), [EMAIL PROTECTED] wrote: > > > > >An offpoint but related question Does anyone know of an easy > >way to get the glibc source files installed? The latest version > >from gnu is 2.0.6 (btw, how can redhat have a later version that > >gnu itself...) and the latest srpm from redhat is version 2.0.7-13. > > > >I need the source files for debugging. Anyone know of a convenient > >way to get the right source installed without making everything > >get messed up? > > Well, if you are RPM enabled, just install the SRPM. > Thanks for the reply. But here is the problem. The srpm is for version 2.0.7-13, not 2.0.7-19 which is what I currently have and I don't want to mess with the libs I have installed already. Is there a convenient way to install just the source files that anyone knows of. Is it just a matter of a couple of directories worth or is it a variety of directories which are involved? I don't know why the redhat rpm doesn't install the source files along with the libs? Perhaps I should remove the libs and install fresh 2.0.6 from gnu itself. Are there any problems with 2.0.6?? Am I getting into trouble here? Mark