From: <cr...@us...> - 2008-07-19 15:22:39
|
Revision: 4326 http://jnode.svn.sourceforge.net/jnode/?rev=4326&view=rev Author: crawley Date: 2008-07-19 15:22:07 +0000 (Sat, 19 Jul 2008) Log Message: ----------- Add the configure app to the checkstyle list Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2008-07-19 14:59:03 UTC (rev 4325) +++ trunk/all/build.xml 2008-07-19 15:22:07 UTC (rev 4326) @@ -21,6 +21,7 @@ <property name="backup.dir" value="${build.dir}/backup"/> <property name="jnode-builder.jar" value="${build.dir}/descriptors/jnode-builder.jar"/> + <property name="jnode-configure.jar" value="${build.dir}/descriptors/jnode-configure.jar"/> <property name="jnode-core.jar" value="${root.dir}/core/build/classes"/> <property name="jnode-distr.jar" value="${root.dir}/distr/build/classes"/> <property name="jnode-fs.jar" value="${root.dir}/fs/build/classes"/> @@ -887,7 +888,8 @@ <fileset dir="../distr/src/apps" includes="**/*.java"/> <fileset dir="../distr/src/emu" includes="**/*.java"/> <fileset dir="../distr/src/install" includes="**/*.java"/> - <fileset dir="../distr/src/test" includes="**/*.java"/> + <fileset dir="../distr/src/configure" includes="**/*.java"/> + <fileset dir="../distr/src/test" includes="**/*.java"/> <fileset dir="../fs/src/fs" includes="**/*.java"/> <fileset dir="../fs/src/driver" includes="**/*.java"/> <fileset dir="../fs/src/test" includes="**/*.java"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2008-08-07 20:09:28
|
Revision: 4411 http://jnode.svn.sourceforge.net/jnode/?rev=4411&view=rev Author: lsantha Date: 2008-08-07 20:09:25 +0000 (Thu, 07 Aug 2008) Log Message: ----------- Set version number 0.2.7 Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2008-08-07 19:58:12 UTC (rev 4410) +++ trunk/all/build.xml 2008-08-07 20:09:25 UTC (rev 4411) @@ -4,7 +4,7 @@ <typedef file="${basedir}/lib/jnode.xml"/> <!-- JNode version --> - <property name="jnode-ver" value="0.2.7-dev"/> + <property name="jnode-ver" value="0.2.7"/> <!-- Java target and source version --> <property name="java.target" value="1.5"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2008-08-07 22:14:41
|
Revision: 4413 http://jnode.svn.sourceforge.net/jnode/?rev=4413&view=rev Author: lsantha Date: 2008-08-07 22:14:38 +0000 (Thu, 07 Aug 2008) Log Message: ----------- Development of JNode 0.2.8 opened. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2008-08-07 20:42:21 UTC (rev 4412) +++ trunk/all/build.xml 2008-08-07 22:14:38 UTC (rev 4413) @@ -4,7 +4,7 @@ <typedef file="${basedir}/lib/jnode.xml"/> <!-- JNode version --> - <property name="jnode-ver" value="0.2.7"/> + <property name="jnode-ver" value="0.2.8-dev"/> <!-- Java target and source version --> <property name="java.target" value="1.5"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fd...@us...> - 2008-08-17 16:47:07
|
Revision: 4458 http://jnode.svn.sourceforge.net/jnode/?rev=4458&view=rev Author: fduminy Date: 2008-08-17 16:47:04 +0000 (Sun, 17 Aug 2008) Log Message: ----------- fixed error happening after a 'clean' (file ${cdroms.dir}/JNode.nvram doesn't exist) Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2008-08-17 16:35:16 UTC (rev 4457) +++ trunk/all/build.xml 2008-08-17 16:47:04 UTC (rev 4458) @@ -427,7 +427,7 @@ <!-- Save virtualization etc state across 'clean' --> <target name="save"> - <copy file="${cdroms.dir}/JNode.nvram" todir="${save.dir}"/> + <copy file="${cdroms.dir}/JNode.nvram" todir="${save.dir}" failonerror="no"/> </target> <!-- Clean everything files --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-01-19 19:08:21
|
Revision: 4892 http://jnode.svn.sourceforge.net/jnode/?rev=4892&view=rev Author: lsantha Date: 2009-01-19 19:08:14 +0000 (Mon, 19 Jan 2009) Log Message: ----------- Raised Java source level and javac target level to 1.6 . Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-01-19 19:05:43 UTC (rev 4891) +++ trunk/all/build.xml 2009-01-19 19:08:14 UTC (rev 4892) @@ -13,8 +13,8 @@ <property name="jnode-ver" value="0.2.8-dev"/> <!-- Java target and source version --> - <property name="java.target" value="1.5"/> - <property name="java.source" value="1.5"/> + <property name="java.target" value="1.6"/> + <property name="java.source" value="1.6"/> <property name="java.encoding" value="US-ASCII"/> <property name="root.dir" value="${basedir}/.."/> @@ -199,7 +199,7 @@ <!-- Initialize timestamp --> <tstamp/> - <property name="hotswap.class.tstamp.pattern" value="MM/dd/yyyy kk:mm:ss"/> + <property name="hotswap.class.tstamp.pattern" value="MM/dd/yyyy kk:mm:ss.SSS"/> <tstamp> <format property="hotswap.class.tstamp" pattern="${hotswap.class.tstamp.pattern}" /> </tstamp> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-01-21 11:23:01
|
Revision: 4894 http://jnode.svn.sourceforge.net/jnode/?rev=4894&view=rev Author: lsantha Date: 2009-01-21 11:22:57 +0000 (Wed, 21 Jan 2009) Log Message: ----------- Create MD5 checksum of files to be released. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-01-20 08:02:57 UTC (rev 4893) +++ trunk/all/build.xml 2009-01-21 11:22:57 UTC (rev 4894) @@ -433,9 +433,21 @@ <mkdir dir="${upload.dir}"/> <gzip src="${jnode-x86.iso}" destfile="${upload.dir}/jnode-x86-${jnode-ver}.iso.gz"/> <copy todir="${upload.dir}" file="${sources.dist.tar.gz}"/> + <checksum algorithm="MD5" forceoverwrite="true"> + <fileset dir="${upload.dir}"> + <include name="jnode-x86-${jnode-ver}.iso.gz" /> + <include name="jnodesources-${jnode-ver}.tar.gz" /> + </fileset> + </checksum> + <echo message="FTP upload disabled. Uploadables are in: ${upload.dir}"/> + <!-- + TODO find a way to automatically upload the files + jsch based scp with sftp fails with an error to sourceforge + FTP uploads are abandone by sourceforge <ftp server="upload.sourceforge.net" remotedir="incoming" passive="yes" newer="yes" verbose="yes" userid="anonymous" password="${user.name}@users.sourceforge.net"> <fileset dir="${upload.dir}"/> </ftp> + --> </target> <!-- Save virtualization etc state across 'clean' --> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-02-02 15:52:09
|
Revision: 4991 http://jnode.svn.sourceforge.net/jnode/?rev=4991&view=rev Author: lsantha Date: 2009-02-02 15:52:05 +0000 (Mon, 02 Feb 2009) Log Message: ----------- Updated header-fix target to avoid the sources with a different license. Disabled the creation of 64 bits bootimage until it gets fixed. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-02-02 15:42:06 UTC (rev 4990) +++ trunk/all/build.xml 2009-02-02 15:52:05 UTC (rev 4991) @@ -408,7 +408,8 @@ <target name="cd-x86" depends="assemble"> <tar destfile="${sources.dist.tar.gz}" compression="gzip" basedir="${root.dir}" excludes="*/build/**"/> <x86-build bits="32" target="java-image"/> - <x86-build bits="64" target="java-image"/> + <!-- TODO enable this when 64 bit support is working --> + <!--x86-build bits="64" target="java-image"/--> <property name="jnode.bits" value="32" /> <ant antfile="build-x86.xml" inheritall="true" inheritrefs="true" target="cdrom"/> </target> @@ -655,30 +656,45 @@ <!-- Compare classpath version of jnode with real classpath version --> <target name="header-fix" depends="assemble"> + <!-- todo clean up the excludes --> <taskdef name="header" classname="org.jnode.ant.taskdefs.HeaderTask" classpathref="cp-jnode"/> <header update="on" headerFile="${root.dir}/all/template/header.txt"> <fileset dir="${root.dir}/builder/src/builder" includes="**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/core" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/vmmagic" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/mmtk-vm" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java" + excludes="gnu/classpath/jdwp/VMFrame.java, + gnu/classpath/jdwp/VMIdManager.java, + gnu/classpath/jdwp/VMMethod.java, + gnu/classpath/jdwp/VMVirtualMachine.java, + gnu/classpath/VMStackWalker.java, + gnu/java/lang/VMInstrumentationImpl.java, + gnu/java/nio/VMChannel.java, + java/lang/Thread.java, + java/lang/VMProcess.java, + java/lang/VMSystem.java"/> + <fileset dir="${root.dir}/core/src/openjdk/vm" includes="**/*.java" excludes="java/lang/NativeStrictMath.java"/> + <fileset dir="${root.dir}/core/src/core" includes="**/*.java" excludes="org/jnode/imageio/jpeg/JPEGDecoder"/> + <fileset dir="${root.dir}/core/src/mmtk-vm" includes="**/*.java" excludes="org/mmtk/vm/**/*.java"/> <fileset dir="${root.dir}/core/src/driver" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/test" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/test" includes="**/*.java" excludes="org/jnode/test/mauve/**/*.java,org/jtestserver/**/*.java"/> <fileset dir="${root.dir}/distr/src/install" includes="**/*.java"/> <fileset dir="${root.dir}/distr/src/apps" includes="**/*.java"/> + <fileset dir="${root.dir}/distr/src/emu" includes="**/*.java"/> + <fileset dir="${root.dir}/distr/src/test" includes="**/*.java"/> <fileset dir="${root.dir}/fs/src/fs" includes="**/*.java"/> <fileset dir="${root.dir}/fs/src/driver" includes="**/*.java"/> <fileset dir="${root.dir}/fs/src/test" includes="**/*.java"/> - <fileset dir="${root.dir}/gui/src/awt" includes="**/*.java"/> + <fileset dir="${root.dir}/gui/src/awt" includes="**/*.java" excludes="org/jnode/awt/font/bdf/**/*.java"/> <fileset dir="${root.dir}/gui/src/desktop" includes="**/*.java"/> <fileset dir="${root.dir}/gui/src/driver" includes="**/*.java"/> <fileset dir="${root.dir}/gui/src/test" includes="**/*.java"/> <fileset dir="${root.dir}/net/src/net" includes="**/*.java"/> <fileset dir="${root.dir}/net/src/driver" includes="**/*.java"/> <fileset dir="${root.dir}/net/src/test" includes="**/*.java"/> + <fileset dir="${root.dir}/shell/src/emu" includes="**/*.java"/> <fileset dir="${root.dir}/shell/src/shell" includes="**/*.java"/> + <fileset dir="${root.dir}/shell/src/test" includes="**/*.java"/> </header> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-02-02 16:15:58
|
Revision: 4992 http://jnode.svn.sourceforge.net/jnode/?rev=4992&view=rev Author: lsantha Date: 2009-02-02 16:15:55 +0000 (Mon, 02 Feb 2009) Log Message: ----------- Added description to more targets. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-02-02 15:52:05 UTC (rev 4991) +++ trunk/all/build.xml 2009-02-02 16:15:55 UTC (rev 4992) @@ -331,7 +331,7 @@ </target> <!-- Give help on possible targets --> - <target name="help"> + <target name="help" description="help on the important targets"> <echo> Welcome to the JNode build system. @@ -351,11 +351,11 @@ 32-bit architecture. cd-x86_64-lite Build the JNode bootable CD-ROM for the X86 64-bit architecture. - +<!-- create-patch Create a patch file containing the differences between the local sources and the cvs HEAD branch. - +--> boot-files-winNT Build the JNode boot files for windows NT/2K/XP used together with NTLDR @@ -405,7 +405,7 @@ </target> <!-- Create a bootable CDROM image containing all x86 bootable images and the sources --> - <target name="cd-x86" depends="assemble"> + <target name="cd-x86" depends="assemble" description="create a bootable JNode CD image with sources included"> <tar destfile="${sources.dist.tar.gz}" compression="gzip" basedir="${root.dir}" excludes="*/build/**"/> <x86-build bits="32" target="java-image"/> <!-- TODO enable this when 64 bit support is working --> @@ -457,13 +457,13 @@ </target> <!-- Clean everything files --> - <target name="clean" depends="save"> + <target name="clean" depends="save" description="clean the complete build output"> <jnode.antall target="clean"/> <delete dir="${build.dir}" quiet="on"/> </target> <!-- Generate only the basic api javadoc files --> - <target name="javadoc-small"> + <target name="javadoc-small" description="generate documentation of the basic JNode APIs"> <jnode.javadoc destdir="${build.dir}/javadoc/small"> <sourcepath> <pathelement location="${root.dir}/core/src/classpath/gnu"/> @@ -513,7 +513,7 @@ </target> <!-- Generate all javadoc files --> - <target name="javadoc"> + <target name="javadoc" description="generate documentation of all java source files"> <jnode.javadoc destdir="${build.dir}/javadoc/full"> <sourcepath> <pathelement location="${root.dir}/core/src/classpath/gnu"/> @@ -703,7 +703,7 @@ <fail message="Please set jnode.debugger.port property in jnode.properties." unless="jnode.debugger.port"/> </target> - <target name="hotswap" depends="check-debugger-properties,assemble-projects"> + <target name="hotswap" depends="check-debugger-properties,assemble-projects" description="hotswap the modified classes"> <taskdef name="hotswap" classname="org.jnode.ant.taskdefs.Hotswap" classpathref="cp-jnode" /> <hotswap verbose="true" host="${jnode.debugger.host}" port="${jnode.debugger.port}"> <fileset dir="../core/build/classes/" includes="**/*.class"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-02-02 18:44:59
|
Revision: 4993 http://jnode.svn.sourceforge.net/jnode/?rev=4993&view=rev Author: lsantha Date: 2009-02-02 18:44:55 +0000 (Mon, 02 Feb 2009) Log Message: ----------- JNode version 0.2.8 Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-02-02 16:15:55 UTC (rev 4992) +++ trunk/all/build.xml 2009-02-02 18:44:55 UTC (rev 4993) @@ -10,7 +10,7 @@ <typedef file="${basedir}/lib/jnode.xml"/> <!-- JNode version --> - <property name="jnode-ver" value="0.2.8-dev"/> + <property name="jnode-ver" value="0.2.8"/> <!-- Java target and source version --> <property name="java.target" value="1.6"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-02-02 19:44:14
|
Revision: 4996 http://jnode.svn.sourceforge.net/jnode/?rev=4996&view=rev Author: lsantha Date: 2009-02-02 19:44:07 +0000 (Mon, 02 Feb 2009) Log Message: ----------- JNode 0.2.9-dev started. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-02-02 18:57:58 UTC (rev 4995) +++ trunk/all/build.xml 2009-02-02 19:44:07 UTC (rev 4996) @@ -10,7 +10,7 @@ <typedef file="${basedir}/lib/jnode.xml"/> <!-- JNode version --> - <property name="jnode-ver" value="0.2.8"/> + <property name="jnode-ver" value="0.2.9-dev"/> <!-- Java target and source version --> <property name="java.target" value="1.6"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-03-29 19:28:07
|
Revision: 5181 http://jnode.svn.sourceforge.net/jnode/?rev=5181&view=rev Author: lsantha Date: 2009-03-29 19:27:58 +0000 (Sun, 29 Mar 2009) Log Message: ----------- Added missing source tree to javadoc. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-03-29 13:08:19 UTC (rev 5180) +++ trunk/all/build.xml 2009-03-29 19:27:58 UTC (rev 5181) @@ -506,6 +506,7 @@ <pathelement location="${root.dir}/core/src/openjdk/javax"/> <pathelement location="${root.dir}/core/src/openjdk/org"/> <pathelement location="${root.dir}/core/src/openjdk/sun"/> + <pathelement location="${root.dir}/core/src/openjdk/svm"/> <pathelement location="${root.dir}/core/src/openjdk/vm"/> <pathelement location="${root.dir}/core/src/core"/> <pathelement location="${root.dir}/core/src/driver"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cr...@us...> - 2009-04-13 11:02:41
|
Revision: 5261 http://jnode.svn.sourceforge.net/jnode/?rev=5261&view=rev Author: crawley Date: 2009-04-13 11:02:36 +0000 (Mon, 13 Apr 2009) Log Message: ----------- Fix breakage in javadoc sourcepath. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-04-13 10:06:04 UTC (rev 5260) +++ trunk/all/build.xml 2009-04-13 11:02:36 UTC (rev 5261) @@ -468,6 +468,7 @@ <target name="javadoc-small" description="generate documentation of the basic JNode APIs"> <jnode.javadoc destdir="${build.dir}/javadoc/small"> <sourcepath> + <pathelement location="${root.dir}/core/src/classlib"/> <pathelement location="${root.dir}/core/src/classpath/gnu"/> <pathelement location="${root.dir}/core/src/classpath/java"/> <pathelement location="${root.dir}/core/src/classpath/javax"/> @@ -497,6 +498,7 @@ <target name="javadoc-mmtk"> <jnode.javadoc destdir="${build.dir}/javadoc/mmtk"> <sourcepath> + <pathelement location="${root.dir}/core/src/classlib"/> <pathelement location="${root.dir}/core/src/vmmagic"/> <pathelement location="${root.dir}/core/src/mmtk-vm"/> <pathelement location="${root.dir}/core/src/core"/> @@ -518,6 +520,7 @@ <target name="javadoc" description="generate documentation of all java source files"> <jnode.javadoc destdir="${build.dir}/javadoc/full"> <sourcepath> + <pathelement location="${root.dir}/core/src/classlib"/> <pathelement location="${root.dir}/core/src/classpath/gnu"/> <pathelement location="${root.dir}/core/src/classpath/java"/> <pathelement location="${root.dir}/core/src/classpath/javax"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cr...@us...> - 2009-04-20 11:28:17
|
Revision: 5322 http://jnode.svn.sourceforge.net/jnode/?rev=5322&view=rev Author: crawley Date: 2009-04-20 11:28:15 +0000 (Mon, 20 Apr 2009) Log Message: ----------- Fixed breakage to javadoc build caused by classlib reorg Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-04-20 10:56:49 UTC (rev 5321) +++ trunk/all/build.xml 2009-04-20 11:28:15 UTC (rev 5322) @@ -483,22 +483,14 @@ <jnode.javadoc destdir="${build.dir}/javadoc/small"> <sourcepath> <pathelement location="${root.dir}/core/src/classlib"/> - <pathelement location="${root.dir}/core/src/classpath/gnu"/> - <pathelement location="${root.dir}/core/src/classpath/java"/> - <pathelement location="${root.dir}/core/src/classpath/javax"/> <pathelement location="${root.dir}/core/src/classpath/ext"/> <pathelement location="${root.dir}/core/src/classpath/vm"/> - <pathelement location="${root.dir}/core/src/icedtea"/> - <pathelement location="${root.dir}/core/src/openjdk/com"/> - <pathelement location="${root.dir}/core/src/openjdk/java"/> - <pathelement location="${root.dir}/core/src/openjdk/javax"/> - <pathelement location="${root.dir}/core/src/openjdk/org"/> - <pathelement location="${root.dir}/core/src/openjdk/sun"/> <pathelement location="${root.dir}/core/src/openjdk/vm"/> <pathelement location="${root.dir}/core/src/endorsed/nanoxml"/> <pathelement location="${root.dir}/core/src/core"/> <pathelement location="${root.dir}/core/src/vmmagic"/> <pathelement location="${root.dir}/core/src/driver"/> + <pathelement location="${root.dir}/all/lib/classlib-src.jar"/> </sourcepath> <package name="org.jnode.driver"/> <package name="org.jnode.naming"/> @@ -516,12 +508,11 @@ <pathelement location="${root.dir}/core/src/vmmagic"/> <pathelement location="${root.dir}/core/src/mmtk-vm"/> <pathelement location="${root.dir}/core/src/core"/> - <pathelement location="${root.dir}/core/src/classpath/gnu"/> <pathelement location="${root.dir}/core/src/classpath/ext"/> <pathelement location="${root.dir}/core/src/classpath/vm"/> - <pathelement location="${root.dir}/core/src/openjdk/sun"/> <pathelement location="${root.dir}/core/src/openjdk/vm"/> <pathelement location="${root.dir}/core/src/endorsed/nanoxml"/> + <pathelement location="${root.dir}/all/lib/classlib-src.jar"/> </sourcepath> <package name="org.mmtk.*"/> <package name="org.jnode.vm.memmgr.mmtk.*"/> @@ -535,18 +526,8 @@ <jnode.javadoc destdir="${build.dir}/javadoc/full"> <sourcepath> <pathelement location="${root.dir}/core/src/classlib"/> - <pathelement location="${root.dir}/core/src/classpath/gnu"/> - <pathelement location="${root.dir}/core/src/classpath/java"/> - <pathelement location="${root.dir}/core/src/classpath/javax"/> <pathelement location="${root.dir}/core/src/classpath/ext"/> <pathelement location="${root.dir}/core/src/classpath/vm"/> - <pathelement location="${root.dir}/core/src/icedtea"/> - <pathelement location="${root.dir}/core/src/openjdk/com"/> - <pathelement location="${root.dir}/core/src/openjdk/java"/> - <pathelement location="${root.dir}/core/src/openjdk/javax"/> - <pathelement location="${root.dir}/core/src/openjdk/org"/> - <pathelement location="${root.dir}/core/src/openjdk/sun"/> - <pathelement location="${root.dir}/core/src/openjdk/svm"/> <pathelement location="${root.dir}/core/src/openjdk/vm"/> <pathelement location="${root.dir}/core/src/core"/> <pathelement location="${root.dir}/core/src/driver"/> @@ -566,6 +547,7 @@ <pathelement location="${root.dir}/net/src/net"/> <pathelement location="${root.dir}/net/src/driver"/> <pathelement location="${root.dir}/shell/src/shell"/> + <pathelement location="${root.dir}/all/lib/classlib-src.jar"/> </sourcepath> <package name="org.jnode.*"/> <package name="org.mmtk.*"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <cr...@us...> - 2009-05-03 10:41:27
|
Revision: 5390 http://jnode.svn.sourceforge.net/jnode/?rev=5390&view=rev Author: crawley Date: 2009-05-03 10:41:17 +0000 (Sun, 03 May 2009) Log Message: ----------- Fix classpath for building javadocs Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-05-03 07:06:37 UTC (rev 5389) +++ trunk/all/build.xml 2009-05-03 10:41:17 UTC (rev 5390) @@ -596,6 +596,12 @@ <jnode.antall target="clean"/> <delete dir="${build.dir}" quiet="on"/> </target> + + <path id="cp-javadoc"> + <path refid="cp"/> + <pathelement location="${bcel-5.1.jar}"/> + <pathelement location="${nanoxml-java.jar}"/> + </path> <!-- Generate only the basic api javadoc files --> <target name="javadoc-small" description="generate documentation of the basic JNode APIs"> @@ -615,7 +621,7 @@ <package name="org.jnode.naming"/> <package name="org.jnode.plugin"/> <package name="org.jnode.system"/> - <bootclasspath refid="cp"/> + <bootclasspath refid="cp-javadoc"/> </jnode.javadoc> </target> @@ -636,7 +642,7 @@ <package name="org.mmtk.*"/> <package name="org.jnode.vm.memmgr.mmtk.*"/> <package name="org.vmmagic.*"/> - <classpath refid="cp"/> + <classpath refid="cp-javadoc"/> </jnode.javadoc> </target> @@ -669,12 +675,11 @@ <pathelement location="${root.dir}/net/src/net"/> <pathelement location="${root.dir}/net/src/driver"/> <pathelement location="${root.dir}/shell/src/shell"/> - <pathelement location="${root.dir}/all/lib/classlib-src.jar"/> </sourcepath> <package name="org.jnode.*"/> <package name="org.mmtk.*"/> <package name="org.vmmagic.*"/> - <bootclasspath refid="cp"/> + <bootclasspath refid="cp-javadoc"/> </jnode.javadoc> </target> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2009-07-09 10:37:38
|
Revision: 5599 http://jnode.svn.sourceforge.net/jnode/?rev=5599&view=rev Author: lsantha Date: 2009-07-09 10:37:37 +0000 (Thu, 09 Jul 2009) Log Message: ----------- Added path to unpack200. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-07-07 14:07:37 UTC (rev 5598) +++ trunk/all/build.xml 2009-07-09 10:37:37 UTC (rev 5599) @@ -288,7 +288,7 @@ <then> <delete file="${classlib.jar}"/> <echo message="Creating ${classlib.jar}"/> - <exec executable="unpack200"> + <exec executable="${java.home}/bin/unpack200"> <arg file="${root.dir}/all/lib/classlib.pack.gz"/> <arg file="${classlib.jar}"/> </exec> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <fd...@us...> - 2009-07-30 12:29:39
|
Revision: 5623 http://jnode.svn.sourceforge.net/jnode/?rev=5623&view=rev Author: fduminy Date: 2009-07-30 12:29:27 +0000 (Thu, 30 Jul 2009) Log Message: ----------- re-applied the patch to check space in path on windows platforms (+ slight modification to use the Os task) Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2009-07-29 19:09:34 UTC (rev 5622) +++ trunk/all/build.xml 2009-07-30 12:29:27 UTC (rev 5623) @@ -180,6 +180,17 @@ </patternset> <target name="prepare"> + <!-- Fail on a Windows platform if there are spaces in the root dir's pathname. It will + lead to mkisofs dying with a misleading error message. bluebit / crawley 2008-05-03 --> + <fail message="Cannot build JNode from a directory with spaces in the pathname."> + <condition> + <and> + <os family="windows"/> + <contains string="${root.dir}" substring=" " casesensitive="false" /> + </and> + </condition> + </fail> + <fail message="Java Runtime version 1.6 needed. Your version is: ${java.runtime.version}"> <condition> <not> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-01-03 13:34:56
|
Revision: 5715 http://jnode.svn.sourceforge.net/jnode/?rev=5715&view=rev Author: lsantha Date: 2010-01-03 13:34:49 +0000 (Sun, 03 Jan 2010) Log Message: ----------- Fixed exludes for header update. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-01-03 13:33:07 UTC (rev 5714) +++ trunk/all/build.xml 2010-01-03 13:34:49 UTC (rev 5715) @@ -860,18 +860,9 @@ <header update="on" headerFile="${root.dir}/all/template/header.txt"> <fileset dir="${root.dir}/builder/src/builder" includes="**/*.java"/> <fileset dir="${root.dir}/cli/src/commands" includes="**/*.java"/> - <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java" excludes="gnu/classpath/jdwp/**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java" - excludes="gnu/classpath/jdwp/VMFrame.java, - gnu/classpath/jdwp/VMIdManager.java, - gnu/classpath/jdwp/VMMethod.java, - gnu/classpath/jdwp/VMVirtualMachine.java, - gnu/classpath/VMStackWalker.java, - gnu/java/lang/VMInstrumentationImpl.java, - gnu/java/nio/VMChannel.java, - java/lang/Thread.java, - java/lang/VMProcess.java, - java/lang/VMSystem.java"/> + excludes="java/lang/VMProcess.java,java/lang/VMSystem.java"/> <fileset dir="${root.dir}/core/src/openjdk/vm" includes="**/*.java" excludes="java/lang/NativeStrictMath.java"/> <fileset dir="${root.dir}/core/src/core" includes="**/*.java" excludes="org/jnode/imageio/jpeg/JPEGDecoder"/> <fileset dir="${root.dir}/core/src/mmtk-vm" includes="**/*.java" excludes="org/mmtk/vm/**/*.java"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2010-03-27 05:39:13
|
Revision: 5735 http://jnode.svn.sourceforge.net/jnode/?rev=5735&view=rev Author: lsantha Date: 2010-03-27 05:39:07 +0000 (Sat, 27 Mar 2010) Log Message: ----------- Added plugin insertor to custom initjar assembler. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2010-03-26 13:23:34 UTC (rev 5734) +++ trunk/all/build.xml 2010-03-27 05:39:07 UTC (rev 5735) @@ -502,7 +502,7 @@ pluginDir="${plugins.dir}" systemPluginList="${root.dir}/all/conf/system-plugin-list.xml"> <insert userApplicationsDir="${user.applications.dir}"/> - + <fileset dir="${root.dir}/all/conf"> <exclude name="system-plugin-list.xml"/> <include name="*plugin-list.xml"/> @@ -517,6 +517,7 @@ <initjars destdir="${initjars.dir}" pluginDir="${plugins.dir}" systemPluginList="${root.dir}/all/conf/system-plugin-list.xml"> + <insert userApplicationsDir="${user.applications.dir}"/> <fileset dir="${custom.plugin-list.dir}"> <include name="*plugin-list.xml"/> </fileset> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2011-06-30 20:21:52
|
Revision: 5830 http://jnode.svn.sourceforge.net/jnode/?rev=5830&view=rev Author: lsantha Date: 2011-06-30 20:21:46 +0000 (Thu, 30 Jun 2011) Log Message: ----------- Fixed cp-compare target. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2011-06-30 20:20:36 UTC (rev 5829) +++ trunk/all/build.xml 2011-06-30 20:21:46 UTC (rev 5830) @@ -798,21 +798,9 @@ <delete dir="${build.dir}/classpath-compare"/> <cp-compare destdir="${build.dir}/classpath-compare" type="classpath"> <vmsources> - <fileset dir="${root.dir}/core/src/classpath/gnu"> + <fileset dir="${root.dir}/core/src/classpath/ext"> <patternset refid="cp-includes-pattern"/> </fileset> - <fileset dir="${root.dir}/core/src/classpath/java"> - <patternset refid="cp-includes-pattern"/> - </fileset> - <fileset dir="${root.dir}/core/src/classpath/javax"> - <patternset refid="cp-includes-pattern"/> - </fileset> - <fileset dir="${root.dir}/core/src/classpath/tools"> - <patternset refid="cp-includes-pattern"/> - </fileset> - <fileset dir="${root.dir}/core/src/classpath/sun"> - <patternset refid="cp-includes-pattern"/> - </fileset> </vmsources> <vmspecificsources> <fileset dir="${root.dir}/core/src/classpath/vm"> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <ls...@us...> - 2013-02-23 12:52:07
|
Revision: 5971 http://jnode.svn.sourceforge.net/jnode/?rev=5971&view=rev Author: lsantha Date: 2013-02-23 12:51:58 +0000 (Sat, 23 Feb 2013) Log Message: ----------- Fixes for header-fix ant target. Modified Paths: -------------- trunk/all/build.xml Modified: trunk/all/build.xml =================================================================== --- trunk/all/build.xml 2013-02-21 07:28:53 UTC (rev 5970) +++ trunk/all/build.xml 2013-02-23 12:51:58 UTC (rev 5971) @@ -835,7 +835,9 @@ <header update="on" headerFile="${root.dir}/all/template/header.txt"> <fileset dir="${root.dir}/builder/src/builder" includes="**/*.java"/> + <fileset dir="${root.dir}/builder/src/configure" includes="**/*.java"/> <fileset dir="${root.dir}/cli/src/commands" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/classlib" includes="**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/ext" includes="**/*.java" excludes="gnu/classpath/jdwp/**/*.java"/> <fileset dir="${root.dir}/core/src/classpath/vm" includes="**/*.java" excludes="java/lang/VMProcess.java,java/lang/VMSystem.java"/> @@ -843,7 +845,9 @@ <fileset dir="${root.dir}/core/src/core" includes="**/*.java" excludes="org/jnode/imageio/jpeg/JPEGDecoder"/> <fileset dir="${root.dir}/core/src/mmtk-vm" includes="**/*.java" excludes="org/mmtk/vm/**/*.java"/> <fileset dir="${root.dir}/core/src/driver" includes="**/*.java"/> + <fileset dir="${root.dir}/core/src/emu" includes="**/*.java" excludes="gnu/**/*.java"/> <fileset dir="${root.dir}/core/src/test" includes="**/*.java" excludes="org/jnode/test/mauve/**/*.java,org/jtestserver/**/*.java"/> + <fileset dir="${root.dir}/core/src/template" includes="**/*.java"/> <fileset dir="${root.dir}/distr/src/install" includes="**/*.java"/> <fileset dir="${root.dir}/distr/src/apps" includes="**/*.java"/> <fileset dir="${root.dir}/distr/src/emu" includes="**/*.java"/> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |