summaryrefslogtreecommitdiff
path: root/src/3rd_party/dbus-1.7.8/doc/introspect.dtd
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2018-01-21 12:04:31 -0500
committerJackLivio <jack@livio.io>2018-01-21 12:04:31 -0500
commit08fcc026eafab3d8058d16b353be0995258d82dc (patch)
treea66516a47140df9f3d4a658a06315d2f790540a4 /src/3rd_party/dbus-1.7.8/doc/introspect.dtd
parentad04121909b2de7d625acd8ec4aff390b39196aa (diff)
downloadsdl_core-08fcc026eafab3d8058d16b353be0995258d82dc.tar.gz
Remove Dbus and Iap libraries
Fix compilation error for build dbus and removes the dbus library from the core project. Dbus is still supported but now Core will not install it on the users system.
Diffstat (limited to 'src/3rd_party/dbus-1.7.8/doc/introspect.dtd')
-rw-r--r--src/3rd_party/dbus-1.7.8/doc/introspect.dtd37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/3rd_party/dbus-1.7.8/doc/introspect.dtd b/src/3rd_party/dbus-1.7.8/doc/introspect.dtd
deleted file mode 100644
index ba263d3260..0000000000
--- a/src/3rd_party/dbus-1.7.8/doc/introspect.dtd
+++ /dev/null
@@ -1,37 +0,0 @@
-<!-- DTD for D-Bus Introspection data -->
-<!-- (C) 2005-02-02 David A. Wheeler; released under the D-Bus licenses,
- GNU GPL version 2 (or greater) and AFL 1.1 (or greater) -->
-
-<!-- see D-Bus specification for documentation -->
-
-<!ELEMENT node (node|interface)*>
-<!ATTLIST node name CDATA #IMPLIED>
-
-<!ELEMENT interface (method|signal|property|annotation)*>
-<!ATTLIST interface name CDATA #REQUIRED>
-
-<!ELEMENT method (arg|annotation)*>
-<!ATTLIST method name CDATA #REQUIRED>
-
-<!ELEMENT signal (arg|annotation)*>
-<!ATTLIST signal name CDATA #REQUIRED>
-
-<!ELEMENT arg EMPTY>
-<!ATTLIST arg name CDATA #IMPLIED>
-<!ATTLIST arg type CDATA #REQUIRED>
-<!-- Method arguments SHOULD include "direction",
- while signal and error arguments SHOULD not (since there's no point).
- The DTD format can't express that subtlety. -->
-<!ATTLIST arg direction (in|out) "in">
-
-<!-- AKA "attribute" -->
-<!ELEMENT property (annotation)*>
-<!ATTLIST property name CDATA #REQUIRED>
-<!ATTLIST property type CDATA #REQUIRED>
-<!ATTLIST property access (read|write|readwrite) #REQUIRED>
-
-<!ELEMENT annotation EMPTY> <!-- Generic metadata -->
-<!ATTLIST annotation name CDATA #REQUIRED>
-<!ATTLIST annotation value CDATA #REQUIRED>
-
-