Changeset 278 for trunk/openjdk/jaxp
- Timestamp:
- Mar 26, 2011, 8:39:20 PM (14 years ago)
- Location:
- trunk/openjdk
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openjdk
- Property svn:ignore
-
old new 1 1 build 2 build-product-release
-
-
Property svn:mergeinfo
set to
/branches/vendor/oracle/openjdk6/b22 merged eligible /branches/vendor/oracle/openjdk6/current merged eligible
- Property svn:ignore
-
trunk/openjdk/jaxp/LICENSE
r2 r278 326 326 "CLASSPATH" EXCEPTION TO THE GPL 327 327 328 Certain source files distributed by Sun Microsystems, Inc. are subject to329 the following clarification and special exception to the GPL, but only where 330 Sun has expressly included in the particular source file's header the words 331 "Sun designates this particular file as subject to the "Classpath" exception 332 as provided by Sunin the LICENSE file that accompanied this code."328 Certain source files distributed by Oracle America and/or its affiliates are 329 subject to the following clarification and special exception to the GPL, but 330 only where Oracle has expressly included in the particular source file's header 331 the words "Oracle designates this particular file as subject to the "Classpath" 332 exception as provided by Oracle in the LICENSE file that accompanied this code." 333 333 334 334 Linking this library statically or dynamically with other modules is making -
trunk/openjdk/jaxp/build-defs.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 22 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,23 CA 95054 USA or visit www.sun.com if you need additional information or24 have anyquestions.22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 or visit www.oracle.com if you need additional information or have any 24 questions. 25 25 --> 26 26 … … 56 56 <!-- <drop-import name="jaxp_tests"/> --> 57 57 58 <!-- Fail and print helpful messages if source does not exist. --> 59 <target name="-src-help"> 60 <fail message="${failed.url.src.message}"> 61 <condition> 62 <and> 63 <not> 64 <available file="${jaxp_src.src.dir}" type="dir"/> 65 </not> 66 <istrue value="${allow.downloads}"/> 67 </and> 68 </condition> 69 </fail> 70 <fail message="${failed.nourl.src.message}"> 71 <condition> 72 <not> 73 <available file="${jaxp_src.src.dir}" type="dir"/> 74 </not> 75 </condition> 76 </fail> 77 </target> 58 78 59 <!-- Special build area preparation. -->60 <target name="-drop-build- prep" depends="init, -init-src-dirs">79 <!-- Special build area setup. --> 80 <target name="-drop-build-setup" depends="init, -init-src-dirs"> 61 81 <mkdir dir="${build.classes.dir}"/> 62 82 <copy todir="${build.classes.dir}"> … … 85 105 <!-- Source directory selection. --> 86 106 <target name="-init-src-dirs" 87 depends="init, -use-drop ">107 depends="init, -use-drop,-src-help"> 88 108 <echo message="Using primary.src.dir=${primary.src.dir}"/> 89 109 <pathconvert property="src.list.id" refid="src.dir.id"/> -
trunk/openjdk/jaxp/build-drop-template.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 22 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,23 CA 95054 USA or visit www.sun.com if you need additional information or24 have anyquestions.22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 or visit www.oracle.com if you need additional information or have any 24 questions. 25 25 --> 26 26 … … 76 76 <condition property="@DROP@.url.should.be.used"> 77 77 <and> 78 <istrue value="${allow.downloads}"/> 78 79 <not> 79 80 <isset property="@DROP@.master.bundle.copy.exists"/> -
trunk/openjdk/jaxp/build.properties
r2 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 105 105 ${line.separator} 106 106 107 # Failure messages when source cannot be found on the file system 108 failed.nourl.src.message=\ 109 ERROR: Cannot find source for project ${ant.project.name}.\ 110 ${line.separator}${line.separator}\ 111 HINT: Try setting drops.dir to indicate where the bundles can be found, \ 112 or try setting the ant property allow.downloads=true to download the bundle from the URL.\ 113 ${line.separator}\ 114 e.g. ant -Dallow.downloads=true -OR- ant -Ddrops.dir=some_directory \ 115 ${line.separator} 116 117 # Failure message when source cannot be downloaded 118 failed.url.src.message=\ 119 ERROR: Cannot find source for project ${ant.project.name}.\ 120 ${line.separator}${line.separator}\ 121 HINT: Try setting drops.dir to indicate where the bundles can be found, \ 122 or try checking the URL with your browser.\ 123 ${line.separator}\ 124 e.g. ant -Ddrops.dir=some_directory \ 125 ${line.separator} 126 107 127 #------------------------------------------------------------ -
trunk/openjdk/jaxp/build.xml
r2 r278 1 1 <?xml version="1.0"?> 2 2 <!-- 3 Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.3 Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved. 4 4 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 5 5 6 6 This code is free software; you can redistribute it and/or modify it 7 7 under the terms of the GNU General Public License version 2 only, as 8 published by the Free Software Foundation. Sundesignates this8 published by the Free Software Foundation. Oracle designates this 9 9 particular file as subject to the "Classpath" exception as provided 10 by Sunin the LICENSE file that accompanied this code.10 by Oracle in the LICENSE file that accompanied this code. 11 11 12 12 This code is distributed in the hope that it will be useful, but WITHOUT … … 20 20 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 21 21 22 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,23 CA 95054 USA or visit www.sun.com if you need additional information or24 have anyquestions.22 Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 23 or visit www.oracle.com if you need additional information or have any 24 questions. 25 25 --> 26 26 … … 37 37 javac.target - classfile version target 38 38 javac.source - source version 39 drops.dir - directory that holds source drop bundles 40 allow.download - permit downloads from public url (default is false) 41 (used if bundles not found in drops.dir) 42 43 Run 'make help' for help using the Makefile. 39 44 </description> 40 45 … … 107 112 </target> 108 113 109 <target name="-build- prep"110 depends="init, -init-src-dirs, -drop-build- prep">114 <target name="-build-setup" 115 depends="init, -init-src-dirs, -drop-build-setup"> 111 116 </target> 112 117 113 118 <!-- Build (compilation) of sources to class files. --> 114 119 <target name="build" 115 depends="init, -init-src-dirs, -build-prep"> 120 depends="compile, -build-setup"> 121 </target> 122 <target name="compile" 123 depends="init, -init-src-dirs"> 124 <mkdir dir="${build.classes.dir}"/> 116 125 <javac 117 includeAntRuntime="false" 118 classpath="${build.classes.dir} "126 includeAntRuntime="false" 127 classpath="${build.classes.dir}:${tools.jar}" 119 128 fork="true" 120 129 destdir="${build.classes.dir}" -
trunk/openjdk/jaxp/jaxp.properties
r259 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2011, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 26 26 drops.master.copy.base=${drops.dir} 27 drops.master.url.base=http://java.net/downloads/jaxp/OpenJDK628 27 29 jaxp_src.bundle.name=j dk6-jaxp-2010_01_15.zip30 jaxp_src.bundle.md5.checksum= 8b7e78ef992ffb7f583617dd3036bdb728 jaxp_src.bundle.name=jaxp144_01.zip 29 jaxp_src.bundle.md5.checksum=ef7a8b3624ea904bf584bc46d79b5e75 31 30 jaxp_src.master.bundle.dir=${drops.master.copy.base} 32 jaxp_src.master.bundle.url.base= ${drops.master.url.base}31 jaxp_src.master.bundle.url.base=http://download.java.net/jaxp/openjdk/jdk6 33 32 34 jaxp_tests.bundle.name=jdk6-jaxp-tests-2009_10_27.zip 35 jaxp_tests.master.bundle.dir=${drops.master.copy.base} 36 jaxp_tests.master.bundle.url.base=${drops.master.url.base} 33 #jaxp_tests.bundle.name=jaxp-unittests-1_4_4.zip 34 #jaxp_tests.bundle.md5.checksum=51845e38b02920cf5374d0331ab3a4ee 35 #jaxp_tests.master.bundle.dir=${drops.master.copy.base} 36 #jaxp_tests.master.bundle.url.base=https://java.net/downloads/jaxp/jdk7 37 -
trunk/openjdk/jaxp/make/Makefile
r72 r278 1 1 # 2 # Copyright 2007-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 64 64 ANT_OPTIONS += -Djavac.source=$(JAVAC_SOURCE_ARG) 65 65 endif 66 endif 67 68 # If downloads are allowed 69 ifeq ($(ALLOW_DOWNLOADS),true) 70 ANT_OPTIONS += -Dallow.downloads=true 66 71 endif 67 72 … … 171 176 @echo " " 172 177 @echo " Environment or command line variables (all optional):" 178 $(call helpenvline, ALT_DROPS_DIR,\ 179 "Directory that contains the drop source bundles i.e. drops.dir") 173 180 $(call helpenvline, ALT_BOOTDIR,\ 174 181 "JAVA_HOME to use when running ant") -
trunk/openjdk/jaxp/make/jprt.properties
r2 r278 1 1 # 2 # Copyright 2006-2009 Sun Microsystems, Inc. All Rights Reserved.2 # Copyright (c) 2006, 2010, Oracle and/or its affiliates. All rights reserved. 3 3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 4 4 # 5 5 # This code is free software; you can redistribute it and/or modify it 6 6 # under the terms of the GNU General Public License version 2 only, as 7 # published by the Free Software Foundation. Sundesignates this7 # published by the Free Software Foundation. Oracle designates this 8 8 # particular file as subject to the "Classpath" exception as provided 9 # by Sunin the LICENSE file that accompanied this code.9 # by Oracle in the LICENSE file that accompanied this code. 10 10 # 11 11 # This code is distributed in the hope that it will be useful, but WITHOUT … … 19 19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. 20 20 # 21 # Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,22 # CA 95054 USA or visit www.sun.com if you need additional information or23 # have anyquestions.21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 22 # or visit www.oracle.com if you need additional information or have any 23 # questions. 24 24 # 25 25 … … 41 41 jprt.build.flavors=product,fastdebug 42 42 43 # Explicitly designate what the 32bit match is for the 64bit build44 jprt.solaris_sparcv9.build.platform.match32=solaris_sparc_5.1045 jprt.solaris_sparcv9_5.10.build.platform.match32=solaris_sparc_5.1046 jprt.solaris_x64.build.platform.match32=solaris_i586_5.1047 jprt.solaris_x64_5.10.build.platform.match32=solaris_i586_5.1048 49 43 # Standard list of jprt test targets for this workspace 50 44 jprt.test.targets=
Note:
See TracChangeset
for help on using the changeset viewer.