8147943: jvmti.h generated with GPL header
Generate the jvmti.h with the GPL+CP header Reviewed-by: dcubed, alanb
This commit is contained in:
parent
c702b1312c
commit
70c7173745
@ -21,7 +21,6 @@
|
||||
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
|
||||
or visit www.oracle.com if you need additional information or have any
|
||||
questions.
|
||||
|
||||
-->
|
||||
|
||||
<!DOCTYPE specification [
|
||||
|
@ -95,7 +95,7 @@ typedef enum {
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="intro">
|
||||
<xsl:call-template name="includeHeader"/>
|
||||
<xsl:call-template name="include_GPL_CP_Header"/>
|
||||
<xsl:text>
|
||||
/* Include file for the Java(tm) Virtual Machine Tool Interface */
|
||||
|
||||
|
@ -43,13 +43,56 @@
|
||||
<xsl:call-template name="microversion"/>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:variable name="GPL_header">
|
||||
<!-- The Copyright comment from jvmti.xml -->
|
||||
<xsl:value-of select="/comment()[position()=1]"/>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:variable name="GPL_CP_header_body">
|
||||
<xsl:text> * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
</xsl:text>
|
||||
<xsl:text> *
</xsl:text>
|
||||
<xsl:text> * This code is free software; you can redistribute it and/or modify it
</xsl:text>
|
||||
<xsl:text> * under the terms of the GNU General Public License version 2 only, as
</xsl:text>
|
||||
<xsl:text> * published by the Free Software Foundation. Oracle designates this
</xsl:text>
|
||||
<xsl:text> * particular file as subject to the "Classpath" exception as provided
</xsl:text>
|
||||
<xsl:text> * by Oracle in the LICENSE file that accompanied this code.
</xsl:text>
|
||||
<xsl:text> *
</xsl:text>
|
||||
<xsl:text> * This code is distributed in the hope that it will be useful, but WITHOUT
</xsl:text>
|
||||
<xsl:text> * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
</xsl:text>
|
||||
<xsl:text> * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
</xsl:text>
|
||||
<xsl:text> * version 2 for more details (a copy is included in the LICENSE file that
</xsl:text>
|
||||
<xsl:text> * accompanied this code).
</xsl:text>
|
||||
<xsl:text> *
</xsl:text>
|
||||
<xsl:text> * You should have received a copy of the GNU General Public License version
</xsl:text>
|
||||
<xsl:text> * 2 along with this work; if not, write to the Free Software Foundation,
</xsl:text>
|
||||
<xsl:text> * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
</xsl:text>
|
||||
<xsl:text> *
</xsl:text>
|
||||
<xsl:text> * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
</xsl:text>
|
||||
<xsl:text> * or visit www.oracle.com if you need additional information or have any
</xsl:text>
|
||||
<xsl:text> * questions.
</xsl:text>
|
||||
</xsl:variable>
|
||||
|
||||
<xsl:template name="copyrightComment">
|
||||
<xsl:text>/*</xsl:text>
|
||||
<!-- Copy the Copyright comment from jvmti.xml -->
|
||||
<xsl:value-of select="/comment()[position()=1]"/>
|
||||
<!-- The Copyright comment from jvmti.xml -->
|
||||
<xsl:value-of select="$GPL_header"/>
|
||||
<xsl:text> */

</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="GPL_CP_copyrightComment">
|
||||
<xsl:text>/*
 *</xsl:text>
|
||||
<!-- The Copyright year from jvmti.xml -->
|
||||
<xsl:value-of select="substring-after(substring-before($GPL_header, ' DO NOT ALTER'), '
')"/>
|
||||
<!-- The GPL+CP Copyright header body -->
|
||||
<xsl:value-of select="$GPL_CP_header_body"/>
|
||||
<xsl:text> */

</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="include_GPL_CP_Header">
|
||||
<xsl:call-template name="GPL_CP_copyrightComment"/>
|
||||
<xsl:text> /* AUTOMATICALLY GENERATED FILE - DO NOT EDIT */
</xsl:text>
|
||||
</xsl:template>
|
||||
|
||||
<xsl:template name="includeHeader">
|
||||
<xsl:call-template name="copyrightComment"/>
|
||||
<xsl:text> /* AUTOMATICALLY GENERATED FILE - DO NOT EDIT */
</xsl:text>
|
||||
|
Loading…
x
Reference in New Issue
Block a user