summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/opensp/opensp/attributevalue.patch
diff options
context:
space:
mode:
authorScott Garman <scott.a.garman@intel.com>2012-05-07 15:49:14 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-05-08 14:49:15 +0100
commitcc9b58e7a7886eddd7fdd873941ff06c22a19bc0 (patch)
treefeb439e5b43442587d64271a7794fb677440dd5e /meta/recipes-devtools/opensp/opensp/attributevalue.patch
parente11c4958865455a31cd255d6f1aab60abb84da59 (diff)
downloadpoky-cc9b58e7a7886eddd7fdd873941ff06c22a19bc0.tar.gz
opensp: upgrade to 1.5.2
Removed all patches, they've been integrated upstream. :) Added --disable-doc-build to prevent creation of docs, which otherwise fails with the following configure error: could not find xmlto; set XMLTO or consider --disable-doc-build Removed configure_prepend step that was deleting the m4/ directory, since some macros needed for the build are defined there, and I've not encountered any problems with keeping them there in my testing. (From OE-Core rev: cbd055917b04bf8fc640eee289e443230de139a2) Signed-off-by: Scott Garman <scott.a.garman@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/opensp/opensp/attributevalue.patch')
-rw-r--r--meta/recipes-devtools/opensp/opensp/attributevalue.patch65
1 files changed, 0 insertions, 65 deletions
diff --git a/meta/recipes-devtools/opensp/opensp/attributevalue.patch b/meta/recipes-devtools/opensp/opensp/attributevalue.patch
deleted file mode 100644
index 92f5898f47..0000000000
--- a/meta/recipes-devtools/opensp/opensp/attributevalue.patch
+++ /dev/null
@@ -1,65 +0,0 @@
1Patch obtained from OpenEmbedded.
2
3Upstream-Status: Pending
4
5Signed-off-by: Scott Garman <scott.a.garman@intel.com>
6
7--- OpenSP-1.5/include/Attribute.h~attributevalue 2000-03-09 13:30:56.000000000 -0500
8+++ OpenSP-1.5/include/Attribute.h 2004-01-20 14:11:36.000000000 -0500
9@@ -31,6 +31,28 @@
10 class AttributeContext;
11 class Syntax;
12
13+class SP_API AttributeValue : public Resource {
14+public:
15+ enum Type {
16+ implied,
17+ cdata,
18+ tokenized
19+ };
20+ AttributeValue();
21+ virtual ~AttributeValue();
22+ virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
23+ AttributeContext &,
24+ const StringC &,
25+ unsigned &,
26+ unsigned &) const;
27+ virtual Type info(const Text *&, const StringC *&) const = 0;
28+ virtual const Text *text() const;
29+ virtual Boolean recoverUnquoted(const StringC &, const Location &,
30+ AttributeContext &, const StringC &);
31+ static Boolean handleAsUnterminated(const Text &, AttributeContext &);
32+};
33+
34+
35 class SP_API AttributeDefinitionDesc {
36 public:
37 AttributeDefinitionDesc() { }
38@@ -380,27 +402,6 @@
39 ConstPtr<Notation> notation_;
40 };
41
42-class SP_API AttributeValue : public Resource {
43-public:
44- enum Type {
45- implied,
46- cdata,
47- tokenized
48- };
49- AttributeValue();
50- virtual ~AttributeValue();
51- virtual AttributeSemantics *makeSemantics(const DeclaredValue *,
52- AttributeContext &,
53- const StringC &,
54- unsigned &,
55- unsigned &) const;
56- virtual Type info(const Text *&, const StringC *&) const = 0;
57- virtual const Text *text() const;
58- virtual Boolean recoverUnquoted(const StringC &, const Location &,
59- AttributeContext &, const StringC &);
60- static Boolean handleAsUnterminated(const Text &, AttributeContext &);
61-};
62-
63 class SP_API ImpliedAttributeValue : public AttributeValue {
64 public:
65 ImpliedAttributeValue();