Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-06 Thread Jonathan Gibbons
Perhaps we should also have -Xlint:implicit to report on files that *are* implicitly compiled. -- Jon On Aug 6, 2008, at 11:58 AM, Kelly O'Hair wrote: Actually, that's what I used to figure out what was missing on the command line. :^) Very helpful option. Thanks. -kto Jonathan Gib

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-06 Thread Kelly O'Hair
Actually, that's what I used to figure out what was missing on the command line. :^) Very helpful option. Thanks. -kto Jonathan Gibbons wrote: Kelly, I don't know if it ever might help in cases like this, but as of JDK 6, javac has a switch -implicit:none which will allow it to read, but no

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-06 Thread Jonathan Gibbons
Kelly, I don't know if it ever might help in cases like this, but as of JDK 6, javac has a switch -implicit:none which will allow it to read, but not compile, classes on the source path. This makes it easier to compile (just) those classes given on the command line. -- Jon On Aug 5, 20

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-06 Thread Kelly O'Hair
Thanks for the verification. I'll try and get these changes integrated soon. -kto Florian Weimer wrote: * Kelly O'Hair: Try the attached patch. There was more to change that I thought. If you have other corba changes you should save them. So may need to: cd corba hg diff > ~/saved.cor

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-05 Thread Florian Weimer
* Kelly O'Hair: > Try the attached patch. There was more to change that I thought. > > If you have other corba changes you should save them. > > So may need to: >cd corba >hg diff > ~/saved.corba.patch >hg update -C >hg import corba.patch > quit editor I'm on MASTER, so I had

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-04 Thread Kelly O'Hair
Try the attached patch. There was more to change that I thought. If you have other corba changes you should save them. So may need to: cd corba hg diff > ~/saved.corba.patch hg update -C hg import corba.patch quit editor -kto Florian Weimer wrote: * Kelly O'Hair: One of th

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-03 Thread Brad Wetmore
Just as an update for the OpenJDK alias. Since this caused us to miss Friday's TL/JSN/langtools integration, we've been discussing this amongst the gatekeepers and javac teams in order to assess the cause/impact. We now have a pretty good guess what's going on. In b31, we fixed: 6725036: jav

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-03 Thread Florian Weimer
* Kelly O'Hair: > One of these days I need to convert these corba Makefiles to an > ant script, anyway... > > I'm also testing the attached patch. One more spelling error and a few > sources missing from the lists. With this patch, I get another error: /bin/mkdir -p /home/fw/src/java/jdk7/build/

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-02 Thread Kelly O'Hair
One of these days I need to convert these corba Makefiles to an ant script, anyway... I'm also testing the attached patch. One more spelling error and a few sources missing from the lists. -kto Mark Wielaard wrote: Hi, On Fri, 2008-08-01 at 11:44 -0700, Kelly O'Hair wrote: Best guess is tha

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-02 Thread Mark Wielaard
Hi, On Fri, 2008-08-01 at 11:44 -0700, Kelly O'Hair wrote: > Best guess is that some kind of change to javac is triggering > this failure, but I'm not convinced anything is 'wrong' with javac, > just a change in the class files created implicitly. Stay tuned... > > In the corba repository I did f

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Florian Weimer
* Kelly O'Hair: > I'm not seeing that problem at all. And this failure looks very > different. > > Are you sure you started with a fresh build, e.g. rm -f -r > /home/fw/src/java/jdk7/build ??? Yes, I've just checked it again.

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Max (Weijun) Wang
es.jar includes those files. However, they are not there if I build the whole openjdk. Max On Jul 31, 2008, at 1:13 PM, Max (Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: packag

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Brad Wetmore
/make and call gnumake, the generated classes.jar includes those files. However, they are not there if I build the whole openjdk. Max On Jul 31, 2008, at 1:13 PM, Max (Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, comp

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Max (Weijun) Wang
now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream; ^ What's happening here? I've noticed classes.jar and src.zip inside build/corba/

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Kelly O'Hair
I'm not seeing that problem at all. And this failure looks very different. Are you sure you started with a fresh build, e.g. rm -f -r /home/fw/src/java/jdk7/build ??? -kto Florian Weimer wrote: * Kelly O'Hair: I'm testing it now but I still don't understand why it fails sometimes and not o

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Florian Weimer
* Kelly O'Hair: > I'm testing it now but I still don't understand why it fails sometimes > and not others. The 2_3 sources are never explicitly listed to be > compiled so how they got compiled in the past is a puzzle. With your patch, I end up with this error: warning: package javax.transaction

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Kelly O'Hair
and call gnumake, the generated classes.jar includes those files. However, they are not there if I build the whole openjdk. Max On Jul 31, 2008, at 1:13 PM, Max (Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, comp

Re: package org.omg.CORBA_2_3.portable does not exist

2008-08-01 Thread Brad Wetmore
3 PM, Max (Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream;

Re: package org.omg.CORBA_2_3.portable does not exist

2008-07-31 Thread Weijun Wang
(Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream;

Re: package org.omg.CORBA_2_3.portable does not exist

2008-07-31 Thread Kelly O'Hair
on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream; ^ What's happening here? I've noticed cl

Re: package org.omg.CORBA_2_3.portable does not exist

2008-07-31 Thread Kelly O'Hair
e openjdk. Max On Jul 31, 2008, at 1:13 PM, Max (Weijun) Wang wrote: Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.

Re: package org.omg.CORBA_2_3.portable does not exist

2008-07-30 Thread Max (Weijun) Wang
inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream; ^ What's happening here? I've noticed classes.jar and src.zip inside build/corb

package org.omg.CORBA_2_3.portable does not exist

2008-07-30 Thread Max (Weijun) Wang
Hi All I cannot build JDK on Linux (Ubuntu 8.10) now. gnumake fails inside jdk/make/java/management, complaining ProxyInputStream.java:39: package org.omg.CORBA_2_3.portable does not exist import org.omg.CORBA_2_3.portable.InputStream; ^ What's happ