wok-next diff xorg-xcb-proto/stuff/patches/xcb-proto-1.12-schema-1.patch @ rev 20646

grub2-efi: ls module embedded
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed May 02 11:12:13 2018 +0200 (2018-05-02)
parents 9f70134dc7a7
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/xorg-xcb-proto/stuff/patches/xcb-proto-1.12-schema-1.patch	Wed May 02 11:12:13 2018 +0200
     1.3 @@ -0,0 +1,52 @@
     1.4 +Submitted By: Bruce Dubbs <bdubbs at linuxfromscratch dot org>
     1.5 +Date: 2016-06-01
     1.6 +Initial Package Version: 1.12
     1.7 +Upstream Status: Not Committed
     1.8 +Origin: https://lists.freedesktop.org/archives/xcb/2016-February/010676.html
     1.9 +Description: Fixes make check
    1.10 +
    1.11 +
    1.12 +--- a/src/xcb.xsd
    1.13 ++++ b/src/xcb.xsd
    1.14 +@@ -44,6 +44,15 @@ authorization from the authors.
    1.15 +     <xsd:complexType>
    1.16 +       <xsd:attribute name="bytes" type="xsd:integer" use="optional" />
    1.17 +       <xsd:attribute name="align" type="xsd:integer" use="optional" />
    1.18 ++      <xsd:attribute name="serialize" type="xsd:boolean" use="optional" />
    1.19 ++    </xsd:complexType>
    1.20 ++  </xsd:element>
    1.21 ++
    1.22 ++  <!-- Alignment -->
    1.23 ++  <xsd:element name="required_start_align" >
    1.24 ++    <xsd:complexType>
    1.25 ++      <xsd:attribute name="align" type="xsd:integer" use="required" />
    1.26 ++      <xsd:attribute name="offset" type="xsd:integer" use="optional" />
    1.27 +     </xsd:complexType>
    1.28 +   </xsd:element>
    1.29 + 
    1.30 +@@ -76,14 +85,13 @@ authorization from the authors.
    1.31 +     <xsd:sequence>
    1.32 +       <!-- switch(expression) -->
    1.33 +       <xsd:group ref="expression" minOccurs="1" maxOccurs="1" />
    1.34 ++      <xsd:element ref="required_start_align" minOccurs="0" maxOccurs="1" />
    1.35 +       <xsd:choice>
    1.36 +         <!-- bitcase expression - bit test -->
    1.37 +         <xsd:element name="bitcase" type="caseexpr" minOccurs="0" maxOccurs="unbounded" />
    1.38 +         <!-- case expression - value test -->
    1.39 +         <xsd:element name="case" type="caseexpr" minOccurs="0" maxOccurs="unbounded" />
    1.40 +       </xsd:choice>
    1.41 +-      <!-- default: -->
    1.42 +-      <xsd:group ref="fields" minOccurs="0" maxOccurs="1" />
    1.43 +     </xsd:sequence>
    1.44 +     <xsd:attribute name="name" type="xsd:string" use="required" />
    1.45 +   </xsd:complexType>
    1.46 +@@ -201,6 +209,7 @@ authorization from the authors.
    1.47 +       <xsd:element ref="field" />
    1.48 +       <xsd:element ref="list" />
    1.49 +       <xsd:element ref="fd" />
    1.50 ++      <xsd:element ref="required_start_align" />
    1.51 +     </xsd:choice>
    1.52 +   </xsd:group>
    1.53 + 
    1.54 +
    1.55 +