<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/classpath.git/lib, branch master</title>
<subtitle>git.savannah.gnu.org: git/classpath.git
</subtitle>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/'/>
<entry>
<title>Allow warnings from the Java compiler to be turned on and off.</title>
<updated>2014-10-13T22:38:37+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2014-10-13T22:38:37+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=8a6813555274093cb8746639af1613f428e691fc'/>
<id>8a6813555274093cb8746639af1613f428e691fc</id>
<content type='text'>
2014-10-13  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* configure.ac:
	Add --enable-warnings so warnings can be turned
	on and off. Invoke IT_USING_ECJ during compiler
	checks.
	* examples/Makefile.am:
	Split options for GCJ, javac and ecj.
	* lib/Makefile.am: Likewise.
	* m4/acinclude.m4:
	(IT_USING_ECJ): New macro taken from IcedTea to
	detect the use of ecj.
	* tools/Makefile.am:
	Split options for GCJ, javac and ecj.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2014-10-13  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* configure.ac:
	Add --enable-warnings so warnings can be turned
	on and off. Invoke IT_USING_ECJ during compiler
	checks.
	* examples/Makefile.am:
	Split options for GCJ, javac and ecj.
	* lib/Makefile.am: Likewise.
	* m4/acinclude.m4:
	(IT_USING_ECJ): New macro taken from IcedTea to
	detect the use of ecj.
	* tools/Makefile.am:
	Split options for GCJ, javac and ecj.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix issues with parallel make.</title>
<updated>2014-04-20T18:29:29+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2014-04-20T18:29:29+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=334c9f3174010b114b42065d55aa6c4887d09f3a'/>
<id>334c9f3174010b114b42065d55aa6c4887d09f3a</id>
<content type='text'>
2014-04-14  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Fix issues with parallel make.
	* lib/Makefile.am:
	(.PHONY): Remove genclasses; no longer phony.
	(classes): Remove.
	(genclasses): Touch genclasses to mark completion.
	(gen-xpath-parser): Touch gen-xpath-parser to mark
	completion.
	(compile-classes): Depend on genclasses directly.
	(CLEANFILES): Remove gen-xpath-parser and genclasses.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2014-04-14  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	Fix issues with parallel make.
	* lib/Makefile.am:
	(.PHONY): Remove genclasses; no longer phony.
	(classes): Remove.
	(genclasses): Touch genclasses to mark completion.
	(gen-xpath-parser): Touch gen-xpath-parser to mark
	completion.
	(compile-classes): Depend on genclasses directly.
	(CLEANFILES): Remove gen-xpath-parser and genclasses.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Provide implementations of ForwardingFileObject and ForwardingJavaFileObject.  Set source/target to 1.6 for @Override.</title>
<updated>2012-11-25T22:23:17+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2012-11-25T22:23:17+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=ee33a9b464499659a674b26243e57fa9a349ab47'/>
<id>ee33a9b464499659a674b26243e57fa9a349ab47</id>
<content type='text'>
2012-11-25  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/tools/FileObject.java:
	Add missing comment in header.
	* javax/tools/ForwardingFileObject.java:
	New class.
	(fileObject): Added.
	(ForwardingFileObject(F)): Implemented.
	(delete()): Likewise.
	(getCharContent(boolean)): Likewise.
	(getLastModified()): Likewise.
	(getName()): Likewise.
	(openInputStream()): Likewise.
	(openOutputStream()): Likewise.
	(openReader(boolean)): Likewise.
	(openWriter()): Likewise.
	(toUri()): Likewise.
	* javax/tools/ForwardingJavaFileObject.java:
	New class.
	(ForwardingJavaFileObject(F)): Implemented.
	(getKind()): Likewise.
	(isNameCompatible(String,Kind)): Likewise.
	* lib/Makefile.am:
	Bump source/target to 1.6 to allow use of
	@Override on interface implementations.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2012-11-25  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* javax/tools/FileObject.java:
	Add missing comment in header.
	* javax/tools/ForwardingFileObject.java:
	New class.
	(fileObject): Added.
	(ForwardingFileObject(F)): Implemented.
	(delete()): Likewise.
	(getCharContent(boolean)): Likewise.
	(getLastModified()): Likewise.
	(getName()): Likewise.
	(openInputStream()): Likewise.
	(openOutputStream()): Likewise.
	(openReader(boolean)): Likewise.
	(openWriter()): Likewise.
	(toUri()): Likewise.
	* javax/tools/ForwardingJavaFileObject.java:
	New class.
	(ForwardingJavaFileObject(F)): Implemented.
	(getKind()): Likewise.
	(isNameCompatible(String,Kind)): Likewise.
	* lib/Makefile.am:
	Bump source/target to 1.6 to allow use of
	@Override on interface implementations.

Signed-off-by: Andrew John Hughes &lt;gnu_andrew@member.fsf.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Replace all .cvsignore files with .gitignore</title>
<updated>2012-10-15T06:17:13+00:00</updated>
<author>
<name>Ivan Maidanski</name>
<email>ivmai@mail.ru</email>
</author>
<published>2012-06-10T10:51:01+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=a04355b53cabfb0db0529ffba02ae180479f38c0'/>
<id>a04355b53cabfb0db0529ffba02ae180479f38c0</id>
<content type='text'>
2012-06-10  Ivan Maidanski  &lt;ivmai@mail.ru&gt;

	* compat/.gitignore,
	* compat/java.net/.gitignore,
	* doc/.gitignore,
	* doc/api/.gitignore,
	* doc/www.gnu.org/.gitignore,
	* doc/www.gnu.org/announce/.gitignore,
	* doc/www.gnu.org/cp-tools/.gitignore,
	* doc/www.gnu.org/docs/.gitignore,
	* doc/www.gnu.org/downloads/.gitignore,
	* doc/www.gnu.org/events/.gitignore,
	* doc/www.gnu.org/faq/.gitignore,
	* examples/.gitignore,
	* external/.gitignore,
	* external/jsr166/.gitignore,
	* external/relaxngDatatype/.gitignore,
	* external/sax/.gitignore,
	* external/w3c_dom/.gitignore,
	* gnu/classpath/.gitignore,
	* gnu/java/locale/.gitignore,
	* gnu/java/security/.gitignore,
	* gnu/test/.gitignore,
	* include/.gitignore,
	* java/util/.gitignore,
	* lib/.gitignore,
	* native/.gitignore,
	* native/fdlibm/.gitignore,
	* native/jawt/.gitignore,
	* native/jni/.gitignore,
	* native/jni/classpath/.gitignore,
	* native/jni/gconf-peer/.gitignore,
	* native/jni/gstreamer-peer/.gitignore,
	* native/jni/gtk-peer/.gitignore,
	* native/jni/java-io/.gitignore,
	* native/jni/java-lang/.gitignore,
	* native/jni/java-math/.gitignore,
	* native/jni/java-net/.gitignore,
	* native/jni/java-nio/.gitignore,
	* native/jni/java-util/.gitignore,
	* native/jni/midi-alsa/.gitignore,
	* native/jni/midi-dssi/.gitignore,
	* native/jni/native-lib/.gitignore,
	* native/jni/qt-peer/.gitignore,
	* native/jni/xmlj/.gitignore,
	* native/plugin/.gitignore,
	* native/testsuite/.gitignore,
	* native/vmi/.gitignore,
	* resource/.gitignore,
	* resource/META-INF/services/.gitignore,
	* scripts/.gitignore,
	* test/.gitignore,
	* test/gnu.java.lang.reflect/.gitignore,
	* test/java.io/.gitignore,
	* test/java.lang.reflect/.gitignore,
	* test/java.net/.gitignore,
	* test/java.util/.gitignore,
	* tools/.gitignore,
	* tools/gnu/classpath/tools/doclets/.gitignore,
	* tools/gnu/classpath/tools/doclets/debugdoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/htmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/doctranslet/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/expr/.gitignore,
	* tools/gnu/classpath/tools/java2xhtml/.gitignore,
	* tools/gnu/classpath/tools/taglets/.gitignore,
	* vm/.gitignore,
	* vm/reference/.gitignore: Renamed from .cvsignore.

Signed-off-by: Pekka Enberg &lt;penberg@kernel.org&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2012-06-10  Ivan Maidanski  &lt;ivmai@mail.ru&gt;

	* compat/.gitignore,
	* compat/java.net/.gitignore,
	* doc/.gitignore,
	* doc/api/.gitignore,
	* doc/www.gnu.org/.gitignore,
	* doc/www.gnu.org/announce/.gitignore,
	* doc/www.gnu.org/cp-tools/.gitignore,
	* doc/www.gnu.org/docs/.gitignore,
	* doc/www.gnu.org/downloads/.gitignore,
	* doc/www.gnu.org/events/.gitignore,
	* doc/www.gnu.org/faq/.gitignore,
	* examples/.gitignore,
	* external/.gitignore,
	* external/jsr166/.gitignore,
	* external/relaxngDatatype/.gitignore,
	* external/sax/.gitignore,
	* external/w3c_dom/.gitignore,
	* gnu/classpath/.gitignore,
	* gnu/java/locale/.gitignore,
	* gnu/java/security/.gitignore,
	* gnu/test/.gitignore,
	* include/.gitignore,
	* java/util/.gitignore,
	* lib/.gitignore,
	* native/.gitignore,
	* native/fdlibm/.gitignore,
	* native/jawt/.gitignore,
	* native/jni/.gitignore,
	* native/jni/classpath/.gitignore,
	* native/jni/gconf-peer/.gitignore,
	* native/jni/gstreamer-peer/.gitignore,
	* native/jni/gtk-peer/.gitignore,
	* native/jni/java-io/.gitignore,
	* native/jni/java-lang/.gitignore,
	* native/jni/java-math/.gitignore,
	* native/jni/java-net/.gitignore,
	* native/jni/java-nio/.gitignore,
	* native/jni/java-util/.gitignore,
	* native/jni/midi-alsa/.gitignore,
	* native/jni/midi-dssi/.gitignore,
	* native/jni/native-lib/.gitignore,
	* native/jni/qt-peer/.gitignore,
	* native/jni/xmlj/.gitignore,
	* native/plugin/.gitignore,
	* native/testsuite/.gitignore,
	* native/vmi/.gitignore,
	* resource/.gitignore,
	* resource/META-INF/services/.gitignore,
	* scripts/.gitignore,
	* test/.gitignore,
	* test/gnu.java.lang.reflect/.gitignore,
	* test/java.io/.gitignore,
	* test/java.lang.reflect/.gitignore,
	* test/java.net/.gitignore,
	* test/java.util/.gitignore,
	* tools/.gitignore,
	* tools/gnu/classpath/tools/doclets/.gitignore,
	* tools/gnu/classpath/tools/doclets/debugdoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/htmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/.gitignore,
	* tools/gnu/classpath/tools/doclets/xmldoclet/doctranslet/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/.gitignore,
	* tools/gnu/classpath/tools/gjdoc/expr/.gitignore,
	* tools/gnu/classpath/tools/java2xhtml/.gitignore,
	* tools/gnu/classpath/tools/taglets/.gitignore,
	* vm/.gitignore,
	* vm/reference/.gitignore: Renamed from .cvsignore.

Signed-off-by: Pekka Enberg &lt;penberg@kernel.org&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Generate META-INF/INDEX.LIST file for glibj.zip</title>
<updated>2011-05-29T09:07:04+00:00</updated>
<author>
<name>Pekka Enberg</name>
<email>penberg@kernel.org</email>
</author>
<published>2011-05-29T09:07:04+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=2ddf7d7afdb393d4d9deb92190bb9ad060194483'/>
<id>2ddf7d7afdb393d4d9deb92190bb9ad060194483</id>
<content type='text'>
This patch changes the glibj.zip packaging so that META-INF/INDEX.LIST is
generated to the file. This is needed for VMClassLoader.getBootPackages() to
work correctly:

  private static String[] getBootPackages()
  {
    URL indexList = getResource("META-INF/INDEX.LIST");
    if (indexList != null)
      {

NOTE! This problem is only seen with Jato currently as it's the only VM I'm
aware of that doesn't override any of the classes in vm/reference. CACAO and
JamVM override the whole classloading parts themselves.

I asked about this on IRC and Mark Wielaard explained background on the issue:

  &lt; mjw&gt; 2006-04-19  Olivier Jolly  &lt;olivier.jolly@pcedev.com&gt;
  &lt; mjw&gt;    * vm/reference/java/lang/VMClassLoader.java (getBootPackages): Loads
  &lt; mjw&gt;    boot packages list from the META-INF/INDEX.LIST file if it exists.
  &lt; mjw&gt; http://developer.classpath.org/pipermail/classpath-patches/2006-April/001704.html
  &lt; mjw&gt; "the patch to support the -i option should be incorporated soon and we'll be able to add the creation of the index to the glibj.zip by default."
  &lt; mjw&gt; soon just happens the be &gt; 5 years...

2011-05-29  Pekka Enberg  &lt;penberg@kernel.org&gt;

        * lib/Makefile.am:
        Generate META-INF/INDEX.LST for glibj.zip.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch changes the glibj.zip packaging so that META-INF/INDEX.LIST is
generated to the file. This is needed for VMClassLoader.getBootPackages() to
work correctly:

  private static String[] getBootPackages()
  {
    URL indexList = getResource("META-INF/INDEX.LIST");
    if (indexList != null)
      {

NOTE! This problem is only seen with Jato currently as it's the only VM I'm
aware of that doesn't override any of the classes in vm/reference. CACAO and
JamVM override the whole classloading parts themselves.

I asked about this on IRC and Mark Wielaard explained background on the issue:

  &lt; mjw&gt; 2006-04-19  Olivier Jolly  &lt;olivier.jolly@pcedev.com&gt;
  &lt; mjw&gt;    * vm/reference/java/lang/VMClassLoader.java (getBootPackages): Loads
  &lt; mjw&gt;    boot packages list from the META-INF/INDEX.LIST file if it exists.
  &lt; mjw&gt; http://developer.classpath.org/pipermail/classpath-patches/2006-April/001704.html
  &lt; mjw&gt; "the patch to support the -i option should be incorporated soon and we'll be able to add the creation of the index to the glibj.zip by default."
  &lt; mjw&gt; soon just happens the be &gt; 5 years...

2011-05-29  Pekka Enberg  &lt;penberg@kernel.org&gt;

        * lib/Makefile.am:
        Generate META-INF/INDEX.LST for glibj.zip.
</pre>
</div>
</content>
</entry>
<entry>
<title>2010-05-04  Andrew Haley  &lt;aph@redhat.com&gt;</title>
<updated>2010-05-05T13:11:52+00:00</updated>
<author>
<name>Andrew Haley</name>
<email>aph@redhat.com</email>
</author>
<published>2010-05-05T13:11:52+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=5281557e2f7bb61e2ddfc188540b76ffbb57d34e'/>
<id>5281557e2f7bb61e2ddfc188540b76ffbb57d34e</id>
<content type='text'>
        * lib/gen-classlist.sh.in: Use absolute pathnames for all the
        directory names in the output file.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
        * lib/gen-classlist.sh.in: Use absolute pathnames for all the
        directory names in the output file.
</pre>
</div>
</content>
</entry>
<entry>
<title>Support GCJ as JAVAC.</title>
<updated>2008-09-13T03:07:26+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2008-09-13T03:07:26+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=afee9db31a894a1bae0af9df745d359427e7163b'/>
<id>afee9db31a894a1bae0af9df745d359427e7163b</id>
<content type='text'>
2008-09-13  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* examples/Makefile.am,
	* lib/Makefile.am:
	Add GCJ rules.
	* m4/ac_prog_javac.m4:
	Check whether JAVAC is gcj.
	* m4/ac_prog_javac_works.m4:
	Add GCJ rules.
	* m4/acinclude.m4:
	Don't bother checking for -J
	if using GCJ.
	* tools/Makefile.am:
	Add GCJ rules.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2008-09-13  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* examples/Makefile.am,
	* lib/Makefile.am:
	Add GCJ rules.
	* m4/ac_prog_javac.m4:
	Check whether JAVAC is gcj.
	* m4/ac_prog_javac_works.m4:
	Add GCJ rules.
	* m4/acinclude.m4:
	Don't bother checking for -J
	if using GCJ.
	* tools/Makefile.am:
	Add GCJ rules.
</pre>
</div>
</content>
</entry>
<entry>
<title>Generalise --with-fastjar to --with-jar and allow it to be turned off.</title>
<updated>2008-06-27T00:18:36+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2008-06-27T00:18:36+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=d6e4f9fb2457086bac87975672c0c11f2d88f67f'/>
<id>d6e4f9fb2457086bac87975672c0c11f2d88f67f</id>
<content type='text'>
2008-06-27  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	PR classpath/36637:
	* examples/Makefile.am,
	* lib/Makefile.am:
	Use new conditional and $(JAR).
	* m4/acinclude.m4:
	Replace --with-fastjar with a general
	--with-jar check that can be turned off.
	* tools/Makefile.am:
	Use new conditional and $(JAR).
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2008-06-27  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	PR classpath/36637:
	* examples/Makefile.am,
	* lib/Makefile.am:
	Use new conditional and $(JAR).
	* m4/acinclude.m4:
	Replace --with-fastjar with a general
	--with-jar check that can be turned off.
	* tools/Makefile.am:
	Use new conditional and $(JAR).
</pre>
</div>
</content>
</entry>
<entry>
<title>Move from @MKDIR_P@ to @mkdir_p@.</title>
<updated>2008-06-26T09:58:28+00:00</updated>
<author>
<name>Andrew John Hughes</name>
<email>gnu_andrew@member.fsf.org</email>
</author>
<published>2008-06-26T09:58:28+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=8ebd9935d7346004b5cb935e55a963e160529bb0'/>
<id>8ebd9935d7346004b5cb935e55a963e160529bb0</id>
<content type='text'>
2008-06-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* configure.ac: Remove AC_PROG_MKDIR_P.
	* examples/Makefile.am,
	* lib/Makefile.am,
	* tools/Makefile.am:
	Use mkdir_p instead of MKDIR_P.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
2008-06-26  Andrew John Hughes  &lt;gnu_andrew@member.fsf.org&gt;

	* configure.ac: Remove AC_PROG_MKDIR_P.
	* examples/Makefile.am,
	* lib/Makefile.am,
	* tools/Makefile.am:
	Use mkdir_p instead of MKDIR_P.
</pre>
</div>
</content>
</entry>
<entry>
<title>2008-06-23  Andrew Haley  &lt;aph@redhat.com&gt;</title>
<updated>2008-06-23T14:12:22+00:00</updated>
<author>
<name>Andrew Haley</name>
<email>aph@redhat.com</email>
</author>
<published>2008-06-23T14:12:22+00:00</published>
<link rel='alternate' type='text/html' href='http://trove.baserock.org/cgit/delta/classpath.git/commit/?id=5b24c36896a27b16d572df2466597e4e9e80933d'/>
<id>5b24c36896a27b16d572df2466597e4e9e80933d</id>
<content type='text'>
	* native/jawt/Makefile.am,
	native/fdlibm/Makefile.am,
	native/jni/java-util/Makefile.am,
	native/jni/gstreamer-peer/Makefile.am,
	native/jni/native-lib/Makefile.am,
	native/jni/gconf-peer/Makefile.am,
	native/jni/gtk-peer/Makefile.am,
	native/jni/xmlj/Makefile.am,
	native/jni/midi-alsa/Makefile.am,
	native/jni/java-nio/Makefile.am,
	native/jni/midi-dssi/Makefile.am,
	native/jni/classpath/Makefile.am,
	native/jni/java-io/Makefile.am,
	native/jni/java-lang/Makefile.am,
	native/jni/java-net/Makefile.am (AM_CFLAGS): Add @EXTRA_CFLAGS@.
	* configure.ac (EXTRA_CFLAGS): New macro.

	* lib/Makefile.am (resources): Add .svn.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
	* native/jawt/Makefile.am,
	native/fdlibm/Makefile.am,
	native/jni/java-util/Makefile.am,
	native/jni/gstreamer-peer/Makefile.am,
	native/jni/native-lib/Makefile.am,
	native/jni/gconf-peer/Makefile.am,
	native/jni/gtk-peer/Makefile.am,
	native/jni/xmlj/Makefile.am,
	native/jni/midi-alsa/Makefile.am,
	native/jni/java-nio/Makefile.am,
	native/jni/midi-dssi/Makefile.am,
	native/jni/classpath/Makefile.am,
	native/jni/java-io/Makefile.am,
	native/jni/java-lang/Makefile.am,
	native/jni/java-net/Makefile.am (AM_CFLAGS): Add @EXTRA_CFLAGS@.
	* configure.ac (EXTRA_CFLAGS): New macro.

	* lib/Makefile.am (resources): Add .svn.
</pre>
</div>
</content>
</entry>
</feed>
