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

cairo-clock, grub4dos: fix CFLAGS
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Mar 27 12:50:45 2018 +0200 (2018-03-27)
parents 9f70134dc7a7
children
rev   line source
al@19634 1 Submitted By: Bruce Dubbs <bdubbs at linuxfromscratch dot org>
al@19634 2 Date: 2016-06-01
al@19634 3 Initial Package Version: 1.12
al@19634 4 Upstream Status: Not Committed
al@19634 5 Origin: https://lists.freedesktop.org/archives/xcb/2016-February/010676.html
al@19634 6 Description: Fixes make check
al@19634 7
al@19634 8
al@19634 9 --- a/src/xcb.xsd
al@19634 10 +++ b/src/xcb.xsd
al@19634 11 @@ -44,6 +44,15 @@ authorization from the authors.
al@19634 12 <xsd:complexType>
al@19634 13 <xsd:attribute name="bytes" type="xsd:integer" use="optional" />
al@19634 14 <xsd:attribute name="align" type="xsd:integer" use="optional" />
al@19634 15 + <xsd:attribute name="serialize" type="xsd:boolean" use="optional" />
al@19634 16 + </xsd:complexType>
al@19634 17 + </xsd:element>
al@19634 18 +
al@19634 19 + <!-- Alignment -->
al@19634 20 + <xsd:element name="required_start_align" >
al@19634 21 + <xsd:complexType>
al@19634 22 + <xsd:attribute name="align" type="xsd:integer" use="required" />
al@19634 23 + <xsd:attribute name="offset" type="xsd:integer" use="optional" />
al@19634 24 </xsd:complexType>
al@19634 25 </xsd:element>
al@19634 26
al@19634 27 @@ -76,14 +85,13 @@ authorization from the authors.
al@19634 28 <xsd:sequence>
al@19634 29 <!-- switch(expression) -->
al@19634 30 <xsd:group ref="expression" minOccurs="1" maxOccurs="1" />
al@19634 31 + <xsd:element ref="required_start_align" minOccurs="0" maxOccurs="1" />
al@19634 32 <xsd:choice>
al@19634 33 <!-- bitcase expression - bit test -->
al@19634 34 <xsd:element name="bitcase" type="caseexpr" minOccurs="0" maxOccurs="unbounded" />
al@19634 35 <!-- case expression - value test -->
al@19634 36 <xsd:element name="case" type="caseexpr" minOccurs="0" maxOccurs="unbounded" />
al@19634 37 </xsd:choice>
al@19634 38 - <!-- default: -->
al@19634 39 - <xsd:group ref="fields" minOccurs="0" maxOccurs="1" />
al@19634 40 </xsd:sequence>
al@19634 41 <xsd:attribute name="name" type="xsd:string" use="required" />
al@19634 42 </xsd:complexType>
al@19634 43 @@ -201,6 +209,7 @@ authorization from the authors.
al@19634 44 <xsd:element ref="field" />
al@19634 45 <xsd:element ref="list" />
al@19634 46 <xsd:element ref="fd" />
al@19634 47 + <xsd:element ref="required_start_align" />
al@19634 48 </xsd:choice>
al@19634 49 </xsd:group>
al@19634 50
al@19634 51
al@19634 52