This is the mail archive of the
java@gcc.gnu.org
mailing list for the Java project.
Re: help building custom libgcj
Ok, I thought this was easy, but I didn't succeed doing it. I tried
changing "awt_java_source_files" in both Makefile.am and Makefile.in
to contain only "java/awt/AWTPermission.java".
However, this didn't work - got some errors trying to compile
natEmbeddedWindow.cc: gnu/java/awt/peer/EmbeddedWindow.h: No such file
or directory.
Looks like you need to remove natEmbeddedWindow.cc from nat_source_files
as well.
Aaaaand I need to keep:
java/beans/PropertyChangeEvent.java
java/beans/PropertyChangeListener.java
java/beans/PropertyChangeListenerProxy.java
java/beans/PropertyChangeSupport.java
in "awt_java_source_files", as well. This is referred to from
java.util.LogManager.
And it's compiling again :-)
// Martin