On Mon, 2005-04-11 at 07:40 +0200, Michael Koch wrote: > On Mon, Apr 11, 2005 at 03:59:00AM +0100, Andrew John Hughes wrote: > > > As to a jar version, we considered this recently on the list. One > > reason we call it glibj.zip is because it can't be used as a normal jar, > > and using a different file extension (which still fits the content, > > because jars, AFAIK, are just zips with defined metadata) helps > > differentiate it. I can foresee someone posting a GCJ bug when they try > > to use -findirect-dispatch on it... > > Would not work as java.lang.Object and some other VM important classes > are too different (currently). >
Exactly; if we allow a jar name, I can see someone filing a PR for that problem. > > Index: examples/Makefile.am > > =================================================================== > > RCS file: /cvsroot/classpath/classpath/examples/Makefile.am,v > > retrieving revision 1.3 > > diff -u -3 -p -u -r1.3 Makefile.am > > --- examples/Makefile.am 7 Feb 2005 02:32:37 -0000 1.3 > > +++ examples/Makefile.am 11 Apr 2005 02:49:55 -0000 > > @@ -11,7 +11,7 @@ if FOUND_GCJX > > JCOMPILER = $(GCJX) -bootclasspath '' -sourcepath '' -classpath > > $(top_builddir)/lib:. > > else > > if FOUND_ECJ > > -JCOMPILER = $(ECJ) --bootclasspath '$(top_builddir)/lib' --classpath . > > +JCOMPILER = $(ECJ) -bootclasspath '$(top_builddir)/lib' -classpath . > > else > > error dunno how to setup the JCOMPILER and compile > > endif > > In a separate patch this would be obvious and already in I guess. ;-) > Yes, this is my bad; I did this a while ago and forgot to commit it (I only spotted this when testing the generics branch). At least it's the same sort of file... ;) > > Index: lib/Makefile.am > > =================================================================== > > RCS file: /cvsroot/classpath/classpath/lib/Makefile.am,v > > retrieving revision 1.79 > > diff -u -3 -p -u -r1.79 Makefile.am > > --- lib/Makefile.am 7 Feb 2005 02:32:37 -0000 1.79 > > +++ lib/Makefile.am 11 Apr 2005 02:50:04 -0000 > > @@ -53,6 +53,7 @@ install-data-local: genclasses compile-c > > cp -R java $(DESTDIR)$(pkgdatadir) > > cp -R javax $(DESTDIR)$(pkgdatadir) > > cp -R org $(DESTDIR)$(pkgdatadir) > > + cp -R META-INF $(DESTDIR)$(pkgdatadir) > > > > # FIXME - should mimic doc/api/Makefile.am instead... > > uninstall-local: > > @@ -60,13 +61,14 @@ uninstall-local: > > rm -rf $(DESTDIR)$(pkgdatadir)/java > > rm -rf $(DESTDIR)$(pkgdatadir)/javax > > rm -rf $(DESTDIR)$(pkgdatadir)/org > > + rm -rf $(DESTDIR)$(pkgdatadir)/META-INF > > > > endif # INSTALL_CLASS_FILES > > > > .PHONY: genclasses > > > > glibj.zip: classes compile-classes resources > > - if test "$(ZIP)" != ""; then $(ZIP) -r -D glibj.zip gnu java javax org > > > /dev/null; fi > > + if test "$(ZIP)" != ""; then $(ZIP) -r -D glibj.zip gnu java javax org > > META-INF > /dev/null; fi > > > > resources: > > if ! [ -e gnu ]; then mkdir gnu; fi > > @@ -78,6 +80,8 @@ resources: > > @list='$(propertyfiles)'; for p in $$list; do \ > > cp $(top_srcdir)/resource/$$p $$p; \ > > done > > + if [ -e META-INF ]; then rm -rf META-INF; fi > > + cp -r $(top_srcdir)/resource/META-INF . > > touch resources > > > > classes: genclasses > > @@ -122,6 +126,7 @@ clean-local: > > -rm -rf java > > -rm -rf javax > > -rm -rf org > > + -rm -rf META-INF > > > > dist-hook: > > mkdir -p $(distdir) > > How does $(top_srcdir)/resource/META-INF gets created? It's not in CVS. > > > Michael Whoops... forgot to cvs add them. My excuse is that I shouldn't do this late at night, and instead wait until morning. My third attempt is attached, which includes the services file. Talking of that dir, I'm unsure about the org.xml.sax.driver. This is the only way it works for me, but it may be wrong. Any comments on this (particularly from Chris) would be welcomed. -- Andrew :-) Please avoid sending me Microsoft Office (e.g. Word, PowerPoint) attachments. See http://www.fsf.org/philosophy/no-word-attachments.html No software patents in Europe -- http://nosoftwarepatents.com "Value your freedom, or you will lose it, teaches history. `Don't bother us with politics' respond those who don't want to learn." -- Richard Stallman Escape the Java Trap with GNU Classpath! http://www.gnu.org/philosophy/java-trap.html public class gcj extends Freedom implements Java { ... }
Index: examples/Makefile.am =================================================================== RCS file: /cvsroot/classpath/classpath/examples/Makefile.am,v retrieving revision 1.3 diff -u -3 -p -u -r1.3 Makefile.am --- examples/Makefile.am 7 Feb 2005 02:32:37 -0000 1.3 +++ examples/Makefile.am 11 Apr 2005 16:33:51 -0000 @@ -11,7 +11,7 @@ if FOUND_GCJX JCOMPILER = $(GCJX) -bootclasspath '' -sourcepath '' -classpath $(top_builddir)/lib:. else if FOUND_ECJ -JCOMPILER = $(ECJ) --bootclasspath '$(top_builddir)/lib' --classpath . +JCOMPILER = $(ECJ) -bootclasspath '$(top_builddir)/lib' -classpath . else error dunno how to setup the JCOMPILER and compile endif Index: lib/Makefile.am =================================================================== RCS file: /cvsroot/classpath/classpath/lib/Makefile.am,v retrieving revision 1.79 diff -u -3 -p -u -r1.79 Makefile.am --- lib/Makefile.am 7 Feb 2005 02:32:37 -0000 1.79 +++ lib/Makefile.am 11 Apr 2005 16:33:53 -0000 @@ -53,6 +53,7 @@ install-data-local: genclasses compile-c cp -R java $(DESTDIR)$(pkgdatadir) cp -R javax $(DESTDIR)$(pkgdatadir) cp -R org $(DESTDIR)$(pkgdatadir) + cp -R META-INF $(DESTDIR)$(pkgdatadir) # FIXME - should mimic doc/api/Makefile.am instead... uninstall-local: @@ -60,13 +61,14 @@ uninstall-local: rm -rf $(DESTDIR)$(pkgdatadir)/java rm -rf $(DESTDIR)$(pkgdatadir)/javax rm -rf $(DESTDIR)$(pkgdatadir)/org + rm -rf $(DESTDIR)$(pkgdatadir)/META-INF endif # INSTALL_CLASS_FILES .PHONY: genclasses glibj.zip: classes compile-classes resources - if test "$(ZIP)" != ""; then $(ZIP) -r -D glibj.zip gnu java javax org > /dev/null; fi + if test "$(ZIP)" != ""; then $(ZIP) -r -D glibj.zip gnu java javax org META-INF > /dev/null; fi resources: if ! [ -e gnu ]; then mkdir gnu; fi @@ -78,6 +80,8 @@ resources: @list='$(propertyfiles)'; for p in $$list; do \ cp $(top_srcdir)/resource/$$p $$p; \ done + if [ -e META-INF ]; then rm -rf META-INF; fi + cp -r $(top_srcdir)/resource/META-INF . touch resources classes: genclasses @@ -122,6 +126,7 @@ clean-local: -rm -rf java -rm -rf javax -rm -rf org + -rm -rf META-INF dist-hook: mkdir -p $(distdir) Index: resource/META-INF/services/javax.xml.parsers.DocumentBuilderFactory =================================================================== RCS file: resource/META-INF/services/javax.xml.parsers.DocumentBuilderFactory diff -N resource/META-INF/services/javax.xml.parsers.DocumentBuilderFactory --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ resource/META-INF/services/javax.xml.parsers.DocumentBuilderFactory 11 Apr 2005 16:33:53 -0000 @@ -0,0 +1 @@ +gnu.xml.dom.DomDocumentBuilderFactory Index: resource/META-INF/services/javax.xml.parsers.SAXParserFactory =================================================================== RCS file: resource/META-INF/services/javax.xml.parsers.SAXParserFactory diff -N resource/META-INF/services/javax.xml.parsers.SAXParserFactory --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ resource/META-INF/services/javax.xml.parsers.SAXParserFactory 11 Apr 2005 16:33:53 -0000 @@ -0,0 +1 @@ +gnu.xml.aelfred2.JAXPFactory Index: resource/META-INF/services/javax.xml.parsers.TransformerFactory =================================================================== RCS file: resource/META-INF/services/javax.xml.parsers.TransformerFactory diff -N resource/META-INF/services/javax.xml.parsers.TransformerFactory --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ resource/META-INF/services/javax.xml.parsers.TransformerFactory 11 Apr 2005 16:33:53 -0000 @@ -0,0 +1 @@ +gnu.xml.transform.TransformerFactoryImpl Index: resource/META-INF/services/org.xml.sax.driver =================================================================== RCS file: resource/META-INF/services/org.xml.sax.driver diff -N resource/META-INF/services/org.xml.sax.driver --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ resource/META-INF/services/org.xml.sax.driver 11 Apr 2005 16:33:53 -0000 @@ -0,0 +1 @@ +gnu.xml.aelfred2.XmlReader
signature.asc
Description: This is a digitally signed message part
_______________________________________________ Classpath-patches mailing list Classpath-patches@gnu.org http://lists.gnu.org/mailman/listinfo/classpath-patches