gobject-introspection 2.2.4-x64-mingw32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (294) hide show
  1. checksums.yaml +7 -0
  2. data/Rakefile +129 -0
  3. data/ext/gobject-introspection/depend +10 -0
  4. data/ext/gobject-introspection/extconf.rb +94 -0
  5. data/ext/gobject-introspection/gobject_introspection.def +5 -0
  6. data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
  7. data/ext/gobject-introspection/rb-gi-argument.c +2053 -0
  8. data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
  9. data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
  10. data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
  11. data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
  12. data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
  13. data/ext/gobject-introspection/rb-gi-constructor-info.c +133 -0
  14. data/ext/gobject-introspection/rb-gi-conversions.h +145 -0
  15. data/ext/gobject-introspection/rb-gi-enum-info.c +155 -0
  16. data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
  17. data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
  18. data/ext/gobject-introspection/rb-gi-function-info.c +841 -0
  19. data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
  20. data/ext/gobject-introspection/rb-gi-loader.c +224 -0
  21. data/ext/gobject-introspection/rb-gi-method-info.c +83 -0
  22. data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
  23. data/ext/gobject-introspection/rb-gi-private.h +105 -0
  24. data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
  25. data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
  26. data/ext/gobject-introspection/rb-gi-repository.c +246 -0
  27. data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
  28. data/ext/gobject-introspection/rb-gi-struct-info.c +202 -0
  29. data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
  30. data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
  31. data/ext/gobject-introspection/rb-gi-types.h +71 -0
  32. data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
  33. data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
  34. data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
  35. data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
  36. data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
  37. data/ext/gobject-introspection/rb-gobject-introspection.h +60 -0
  38. data/extconf.rb +71 -0
  39. data/lib/2.0/gobject_introspection.so +0 -0
  40. data/lib/2.1/gobject_introspection.so +0 -0
  41. data/lib/2.2/gobject_introspection.so +0 -0
  42. data/lib/gobject-introspection.rb +53 -0
  43. data/lib/gobject-introspection/boxed-info.rb +28 -0
  44. data/lib/gobject-introspection/callable-info.rb +100 -0
  45. data/lib/gobject-introspection/collection-reader.rb +34 -0
  46. data/lib/gobject-introspection/interface-info.rb +32 -0
  47. data/lib/gobject-introspection/loader.rb +465 -0
  48. data/lib/gobject-introspection/object-info.rb +33 -0
  49. data/lib/gobject-introspection/repository.rb +32 -0
  50. data/lib/gobject-introspection/struct-info.rb +28 -0
  51. data/lib/gobject-introspection/union-info.rb +28 -0
  52. data/test/gobject-introspection-test-utils.rb +26 -0
  53. data/test/run-test.rb +45 -0
  54. data/test/test-arg-info.rb +68 -0
  55. data/test/test-base-info.rb +31 -0
  56. data/test/test-boxed-info.rb +21 -0
  57. data/test/test-callable-info.rb +49 -0
  58. data/test/test-callback-info.rb +29 -0
  59. data/test/test-constant-info.rb +24 -0
  60. data/test/test-enum-info.rb +61 -0
  61. data/test/test-field-type.rb +42 -0
  62. data/test/test-flags-info.rb +27 -0
  63. data/test/test-function-info.rb +39 -0
  64. data/test/test-interface-info.rb +97 -0
  65. data/test/test-loader.rb +30 -0
  66. data/test/test-object-info.rb +131 -0
  67. data/test/test-property-info.rb +38 -0
  68. data/test/test-registered-type-info.rb +35 -0
  69. data/test/test-repository.rb +62 -0
  70. data/test/test-signal-info.rb +40 -0
  71. data/test/test-struct-info.rb +57 -0
  72. data/test/test-type-info.rb +62 -0
  73. data/test/test-type-tag.rb +29 -0
  74. data/test/test-union-info.rb +21 -0
  75. data/test/test-value-info.rb +28 -0
  76. data/test/test-vfunc-info.rb +42 -0
  77. data/vendor/local/bin/g-ir-compiler.exe +0 -0
  78. data/vendor/local/bin/g-ir-generate.exe +0 -0
  79. data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
  80. data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +82 -0
  81. data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +120 -0
  82. data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +110 -0
  83. data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +58 -0
  84. data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +82 -0
  85. data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +71 -0
  86. data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +100 -0
  87. data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +106 -0
  88. data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +207 -0
  89. data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +56 -0
  90. data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +64 -0
  91. data/vendor/local/include/gobject-introspection-1.0/girepository.h +239 -0
  92. data/vendor/local/include/gobject-introspection-1.0/girffi.h +104 -0
  93. data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +57 -0
  94. data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +77 -0
  95. data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +87 -0
  96. data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +80 -0
  97. data/vendor/local/include/gobject-introspection-1.0/gitypes.h +524 -0
  98. data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +84 -0
  99. data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
  100. data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +73 -0
  101. data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
  102. data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
  103. data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
  104. data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
  105. data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
  106. data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
  107. data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
  108. data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
  109. data/vendor/local/lib/girepository-1.0/cairo-1.0.typelib +0 -0
  110. data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
  111. data/vendor/local/lib/girepository-1.0/freetype2-2.0.typelib +0 -0
  112. data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
  113. data/vendor/local/lib/girepository-1.0/win32-1.0.typelib +0 -0
  114. data/vendor/local/lib/girepository-1.0/xfixes-4.0.typelib +0 -0
  115. data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
  116. data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
  117. data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
  118. data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -0
  119. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
  120. data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
  121. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +76 -0
  122. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
  123. data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
  124. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +2161 -0
  125. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
  126. data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
  127. data/vendor/local/lib/gobject-introspection/giscanner/ast.py +1139 -0
  128. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
  129. data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
  130. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +203 -0
  131. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
  132. data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
  133. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +202 -0
  134. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
  135. data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
  136. data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +173 -0
  137. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
  138. data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
  139. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +23 -0
  140. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
  141. data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
  142. data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.py +305 -0
  143. data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
  144. data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
  145. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py +120 -0
  146. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
  147. data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
  148. data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +72 -0
  149. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
  150. data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
  151. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl +4 -0
  152. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl +2 -0
  153. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
  154. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
  155. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -0
  156. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl +1 -0
  157. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +60 -0
  158. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
  159. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
  160. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
  161. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
  162. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
  163. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
  164. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -0
  165. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl +27 -0
  166. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +30 -0
  167. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
  168. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
  169. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +21 -0
  170. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl +9 -0
  171. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +47 -0
  172. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
  173. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
  174. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
  175. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +9 -0
  176. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
  177. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +38 -0
  178. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
  179. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
  180. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +18 -0
  181. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
  182. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
  183. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
  184. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
  185. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +47 -0
  186. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
  187. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
  188. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
  189. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +9 -0
  190. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
  191. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +41 -0
  192. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +27 -0
  193. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +20 -0
  194. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +61 -0
  195. data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +16 -0
  196. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +958 -0
  197. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
  198. data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
  199. data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +338 -0
  200. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
  201. data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
  202. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +529 -0
  203. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
  204. data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
  205. data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +593 -0
  206. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
  207. data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
  208. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +612 -0
  209. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
  210. data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
  211. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +240 -0
  212. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
  213. data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
  214. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +76 -0
  215. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
  216. data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
  217. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +1366 -0
  218. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
  219. data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
  220. data/vendor/local/lib/gobject-introspection/giscanner/message.py +203 -0
  221. data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
  222. data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
  223. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +561 -0
  224. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
  225. data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
  226. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +152 -0
  227. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
  228. data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
  229. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +140 -0
  230. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
  231. data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
  232. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +329 -0
  233. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
  234. data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
  235. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +136 -0
  236. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
  237. data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
  238. data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +971 -0
  239. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
  240. data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
  241. data/vendor/local/lib/gobject-introspection/giscanner/utils.py +211 -0
  242. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
  243. data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
  244. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +156 -0
  245. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
  246. data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
  247. data/vendor/local/lib/libgirepository-1.0.a +0 -0
  248. data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
  249. data/vendor/local/lib/libgirepository-1.0.la +41 -0
  250. data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
  251. data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
  252. data/vendor/local/lib/pkgconfig/patched +0 -0
  253. data/vendor/local/share/aclocal/introspection.m4 +96 -0
  254. data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
  255. data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
  256. data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +4042 -0
  257. data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
  258. data/vendor/local/share/gir-1.0/GLib-2.0.gir +47221 -0
  259. data/vendor/local/share/gir-1.0/GModule-2.0.gir +301 -0
  260. data/vendor/local/share/gir-1.0/GObject-2.0.gir +14733 -0
  261. data/vendor/local/share/gir-1.0/Gio-2.0.gir +82459 -0
  262. data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
  263. data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
  264. data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
  265. data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
  266. data/vendor/local/share/gir-1.0/win32-1.0.gir +19 -0
  267. data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
  268. data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
  269. data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
  270. data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
  271. data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
  272. data/vendor/local/share/gobject-introspection-1.0/gdump.c +569 -0
  273. data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +831 -0
  274. data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +301 -0
  275. data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +57 -0
  276. data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +44 -0
  277. data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1579 -0
  278. data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +535 -0
  279. data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
  280. data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +582 -0
  281. data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5426 -0
  282. data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1948 -0
  283. data/vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h +10 -0
  284. data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +4068 -0
  285. data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +1415 -0
  286. data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +47 -0
  287. data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +102 -0
  288. data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +47 -0
  289. data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +46 -0
  290. data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
  291. data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
  292. data/vendor/local/share/man/man1/g-ir-compiler.1 +42 -0
  293. data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
  294. metadata +363 -0
@@ -0,0 +1,70 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0"
5
+ xmlns:glib="http://www.gtk.org/introspection/glib/1.0">
6
+ <package name="cairo-gobject"/>
7
+ <namespace name="cairo" version="1.0"
8
+ shared-library="libcairo-gobject-2.dll"
9
+ c:identifier-prefixes="cairo"
10
+ c:symbol-prefixes="cairo">
11
+ <record name="Context" c:type="cairo_t" foreign="1"
12
+ glib:type-name="CairoContext"
13
+ glib:get-type="cairo_gobject_context_get_type"/>
14
+ <record name="Surface" c:type="cairo_surface_t" foreign="1"
15
+ glib:type-name="CairoSurface"
16
+ glib:get-type="cairo_gobject_surface_get_type"/>
17
+ <record name="Matrix" c:type="cairo_matrix_t" foreign="1"/>
18
+ <record name="Pattern" c:type="cairo_pattern_t" foreign="1"
19
+ glib:type-name="CairoPattern"
20
+ glib:get-type="cairo_gobject_pattern_get_type"/>
21
+ <record name="Region" c:type="cairo_region_t" foreign="1"
22
+ glib:type-name="CairoRegion"
23
+ glib:get-type="cairo_gobject_region_get_type"/>
24
+ <enumeration name="Content" c:type="cairo_content_t"
25
+ glib:type-name="CairoContent"
26
+ glib:get-type="cairo_gobject_content_get_type">
27
+ <member name="COLOR"
28
+ value="4096"
29
+ c:identifier="CAIRO_CONTENT_COLOR"/>
30
+ <member name="ALPHA"
31
+ value="8192"
32
+ c:identifier="CAIRO_CONTENT_ALPHA"/>
33
+ <member name="COLOR_ALPHA"
34
+ value="12288"
35
+ c:identifier="CAIRO_CONTENT_COLOR_ALPHA"/>
36
+ </enumeration>
37
+ <record name="FontOptions" c:type="cairo_font_options_t" foreign="1"/>
38
+ <record name="FontType" c:type="cairo_font_type_t" foreign="1"/>
39
+ <record name="FontFace" c:type="cairo_font_face_t" foreign="1"
40
+ glib:type-name="CairoFontFace"
41
+ glib:get-type="cairo_gobject_font_face_get_type"/>
42
+ <record name="ScaledFont" c:type="cairo_scaled_font_t" foreign="1"
43
+ glib:type-name="CairoScaledFont"
44
+ glib:get-type="cairo_gobject_scaled_font_get_type"/>
45
+ <record name="Path" c:type="cairo_path_t" foreign="1"/>
46
+ <record name="RectangleInt" c:type="cairo_rectangle_int_t"
47
+ glib:type-name="CairoRectangleInt"
48
+ glib:get-type="cairo_gobject_rectangle_int_get_type">
49
+ <field name="x" writable="1">
50
+ <type name="gint" c:type="gint"/>
51
+ </field>
52
+ <field name="y" writable="1">
53
+ <type name="gint" c:type="gint"/>
54
+ </field>
55
+ <field name="width" writable="1">
56
+ <type name="gint" c:type="gint"/>
57
+ </field>
58
+ <field name="height" writable="1">
59
+ <type name="gint" c:type="gint"/>
60
+ </field>
61
+ </record>
62
+ <function name="image_surface_create" c:identifier="cairo_image_surface_create">
63
+ <return-value transfer-ownership="none">
64
+ <type name="none" c:type="void"/>
65
+ </return-value>
66
+ <parameters>
67
+ </parameters>
68
+ </function>
69
+ </namespace>
70
+ </repository>
@@ -0,0 +1,18 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="fontconfig" version="2.0"
6
+ c:identifier-prefixes="Fc"
7
+ c:symbol-prefixes="fc">
8
+ <record name="Pattern" c:type="FcPattern"/>
9
+ <record name="CharSet" c:type="FcCharSet"/>
10
+ <function name="init" c:identifier="FcInit">
11
+ <return-value transfer-ownership="none">
12
+ <type name="none" c:type="void"/>
13
+ </return-value>
14
+ <parameters>
15
+ </parameters>
16
+ </function>
17
+ </namespace>
18
+ </repository>
@@ -0,0 +1,22 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="freetype2" version="2.0"
6
+ c:identifier-prefixes="FT"
7
+ c:symbol-prefixes="FT">
8
+ <record name="Bitmap" c:type="FT_Bitmap"/>
9
+ <record name="Face" c:type="FT_Face"/>
10
+ <record name="Library" c:type="FT_Library"/>
11
+ <alias name="Int32" c:type="FT_Int32">
12
+ <type name="int32"/>
13
+ </alias>
14
+ <function name="library_version" c:identifier="FT_Library_Version">
15
+ <return-value transfer-ownership="none">
16
+ <type name="none" c:type="void"/>
17
+ </return-value>
18
+ <parameters>
19
+ </parameters>
20
+ </function>
21
+ </namespace>
22
+ </repository>
@@ -0,0 +1,25 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <package name="libxml-2.0"/>
6
+ <namespace name="libxml2" version="2.0"
7
+ c:identifier-prefixes="xml"
8
+ c:symbol-prefixes="xml">
9
+ <record name="Node" c:type="xmlNode"/>
10
+ <record name="NodePtr" c:type="xmlNodePtr"/>
11
+ <record name="Doc" c:type="xmlDoc"/>
12
+ <record name="DocPtr" c:type="xmlDocPtr"/>
13
+ <record name="NsPtr" c:type="xmlNsPtr"/>
14
+ <record name="Char" c:type="xmlChar"/>
15
+ <record name="TextWriter" c:type="xmlTextWriterPtr"/>
16
+ <record name="TextReader" c:type="xmlTextReaderPtr"/>
17
+ <function name="dummy" c:identifier="dummy">
18
+ <return-value transfer-ownership="none">
19
+ <type name="none" c:type="void"/>
20
+ </return-value>
21
+ <parameters>
22
+ </parameters>
23
+ </function>
24
+ </namespace>
25
+ </repository>
@@ -0,0 +1,19 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="win32" version="1.0"
6
+ c:identifier-prefixes=""
7
+ c:symbol-prefixes="Win32">
8
+ <alias name="HWND" c:type="HWND">
9
+ <type name="guint" c:type="guint"/>
10
+ </alias>
11
+ <alias name="HICON" c:type="HICON">
12
+ <type name="gulong" c:type="gulong"/>
13
+ </alias>
14
+ <alias name="HGDIOBJ" c:type="HGDIOBJ">
15
+ <type name="gulong" c:type="gulong"/>
16
+ </alias>
17
+ </namespace>
18
+ </repository>
19
+
@@ -0,0 +1,10 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="xfixes" version="4.0"
6
+ c:identifier-prefixes="X"
7
+ c:symbol-prefixes="X">
8
+ <record name="XserverRegion" c:type="XserverRegion"/>
9
+ </namespace>
10
+ </repository>
@@ -0,0 +1,23 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <include name="xlib" version="2.0"/>
6
+ <namespace name="xft" version="2.0"
7
+ c:identifier-prefixes="Xft"
8
+ c:symbol-prefixes="Xft">
9
+ <record name="Color" c:type="XftColor"/>
10
+ <record name="Draw" c:type="XftDraw"/>
11
+ <record name="Font" c:type="XftFont"/>
12
+ <record name="GlyphSpec" c:type="XftGlyphSpec"/>
13
+
14
+ <function name="init" c:identifier="XftInit">
15
+ <return-value transfer-ownership="none">
16
+ <type name="none" c:type="void"/>
17
+ </return-value>
18
+ <parameters>
19
+ </parameters>
20
+ </function>
21
+
22
+ </namespace>
23
+ </repository>
@@ -0,0 +1,67 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="xlib" version="2.0"
6
+ c:identifier-prefixes=""
7
+ c:symbol-prefixes="X">
8
+ <alias name="Atom" c:type="Atom">
9
+ <type name="gulong" c:type="gulong"/>
10
+ </alias>
11
+ <alias name="Colormap" c:type="Colormap">
12
+ <type name="gulong" c:type="gulong"/>
13
+ </alias>
14
+ <alias name="Cursor" c:type="Cursor">
15
+ <type name="gulong" c:type="gulong"/>
16
+ </alias>
17
+ <record name="Display" c:type="Display"/>
18
+ <alias name="Drawable" c:type="Drawable">
19
+ <type name="gulong" c:type="gulong"/>
20
+ </alias>
21
+ <alias name="GC" c:type="GC">
22
+ <type name="gpointer" c:type="gpointer"/>
23
+ </alias>
24
+ <alias name="KeyCode" c:type="KeyCode">
25
+ <type name="guint8" c:type="guint8"/>
26
+ </alias>
27
+ <alias name="KeySym" c:type="KeySym">
28
+ <type name="gulong" c:type="gulong"/>
29
+ </alias>
30
+ <alias name="Picture" c:type="Picture">
31
+ <type name="gulong" c:type="gulong"/>
32
+ </alias>
33
+ <record name="Screen" c:type="Screen"/>
34
+ <alias name="Time" c:type="Time">
35
+ <type name="gulong" c:type="gulong"/>
36
+ </alias>
37
+ <record name="Visual" c:type="Visual"/>
38
+ <alias name="VisualID" c:type="VisualID">
39
+ <type name="gulong" c:type="gulong"/>
40
+ </alias>
41
+ <alias name="Window" c:type="Window">
42
+ <type name="gulong" c:type="gulong"/>
43
+ </alias>
44
+ <union name="XEvent" c:type="XEvent"/>
45
+ <record name="XConfigureEvent" c:type="XConfigureEvent"/>
46
+ <alias name="XID" c:type="XID">
47
+ <type name="gulong" c:type="gulong"/>
48
+ </alias>
49
+ <alias name="Pixmap" c:type="Pixmap">
50
+ <type name="gulong" c:type="gulong"/>
51
+ </alias>
52
+ <record name="XImage" c:type="XImage"/>
53
+ <record name="XFontStruct" c:type="XFontStruct"/>
54
+ <record name="XTrapezoid" c:type="XTrapezoid"/>
55
+ <record name="XVisualInfo" c:type="XVisualInfo"/>
56
+ <record name="XWindowAttributes" c:type="XWindowAttributes"/>
57
+
58
+ <function name="open_display" c:identifier="XOpenDisplay">
59
+ <return-value transfer-ownership="none">
60
+ <type name="none" c:type="void"/>
61
+ </return-value>
62
+ <parameters>
63
+ </parameters>
64
+ </function>
65
+
66
+ </namespace>
67
+ </repository>
@@ -0,0 +1,16 @@
1
+ <?xml version="1.0"?>
2
+ <repository version="1.2"
3
+ xmlns="http://www.gtk.org/introspection/core/1.0"
4
+ xmlns:c="http://www.gtk.org/introspection/c/1.0">
5
+ <namespace name="xrandr" version="1.3"
6
+ c:identifier-prefixes="XRR"
7
+ c:symbol-prefixes="XRR">
8
+ <record name="ScreenSize" c:type="XRRScreenSize"/>
9
+ <record name="ScreenChangeNotifyEvent" c:type="XRRScreenChangeNotifyEvent"/>
10
+ <record name="NotifyEvent" c:type="XRRNotifyEvent"/>
11
+ <record name="ScreenResources" c:type="XRRScreenResources"/>
12
+ <record name="OutputChangeNotifyEvent" c:type="XRROutputChangeNotifyEvent"/>
13
+ <record name="CrtcChangeNotifyEvent" c:type="XRRCrtcChangeNotifyEvent"/>
14
+ <record name="OutputPropertyNotifyEvent" c:type="XRROutputPropertyNotifyEvent"/>
15
+ </namespace>
16
+ </repository>
@@ -0,0 +1,166 @@
1
+ # -*- Mode: make -*-
2
+ # Copyright 2009-2010 Johan Dahlin
3
+ #
4
+ # This file is free software; the author(s) gives unlimited
5
+ # permission to copy and/or distribute it, with or without
6
+ # modifications, as long as this notice is preserved.
7
+ #
8
+ # * Input variables:
9
+ #
10
+ # INTROSPECTION_GIRS - List of GIRS that should be generated
11
+ # INTROSPECTION_SCANNER - Command to invoke scanner, normally set by
12
+ # GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
13
+ # INTROSPECTION_SCANNER_ARGS - Additional args to pass in to the scanner
14
+ # INTROSPECTION_SCANNER_ENV - Environment variables to set before running
15
+ # the scanner
16
+ # INTROSPECTION_COMPILER - Command to invoke compiler, normally set by
17
+ # GOBJECT_INTROSPECTION_REQUIRE/CHECK() in introspection.m4
18
+ # INTROSPECTION_COMPILER_ARGS - Additional args to pass in to the compiler
19
+ #
20
+ # * Simple tutorial
21
+ #
22
+ # Add this to configure.ac:
23
+ # -Wno-portability to AM_INIT_AUTOMAKE
24
+ # GOBJECT_INTROSPECTION_CHECK([0.6.7])
25
+ #
26
+ # Add this to Makefile.am where your library/program is built:
27
+ # include $(INTROSPECTION_MAKEFILE)
28
+ # INTROSPECTION_GIRS = YourLib-1.0.gir
29
+ # YourLib-1.0.gir: libyourlib.la
30
+ # YourLib_1_0_gir_NAMESPACE = YourLib
31
+ # YourLib_1_0_gir_VERSION = 1.0
32
+ # YourLib_1_0_gir_LIBS = libyourlib.la
33
+ # YourLib_1_0_gir_FILES = $(libyourlib_1_0_SOURCES)
34
+ # girdir = $(datadir)/gir-1.0
35
+ # dist_gir_DATA = YourLib-1.0.gir
36
+ # typelibdir = $(libdir)/girepository-1.0
37
+ # typelib_DATA = YourLib-1.0.typelib
38
+ # CLEANFILES = $(dist_gir_DATA) $(typelib_DATA)
39
+ #
40
+
41
+ # Make sure the required variables are set, these should under normal
42
+ # circumstances come from introspection.m4
43
+ $(if $(INTROSPECTION_SCANNER),,$(error Need to define INTROSPECTION_SCANNER))
44
+ $(if $(INTROSPECTION_COMPILER),,$(error Need to define INTROSPECTION_COMPILER))
45
+
46
+ # Private functions
47
+
48
+ ## Transform the gir filename to something which can reference through a variable
49
+ ## without automake/make complaining, eg Gtk-2.0.gir -> Gtk_2_0_gir
50
+ _gir_name = $(subst /,_,$(subst -,_,$(subst .,_,$(1))))
51
+
52
+ # Namespace and Version is either fetched from the gir filename
53
+ # or the _NAMESPACE/_VERSION variable combo
54
+ _gir_namespace = $(or $($(_gir_name)_NAMESPACE),$(firstword $(subst -, ,$(notdir $(1)))))
55
+ _gir_version = $(or $($(_gir_name)_VERSION),$(lastword $(subst -, ,$(1:.gir=))))
56
+
57
+ # _PROGRAM is an optional variable which needs it's own --program argument
58
+ _gir_program = $(if $($(_gir_name)_PROGRAM),--program=$($(_gir_name)_PROGRAM))
59
+
60
+ # Variables which provides a list of things
61
+ _gir_libraries = $(foreach lib,$($(_gir_name)_LIBS),--library=$(lib))
62
+ _gir_packages = $(foreach pkg,$($(_gir_name)_PACKAGES),--pkg=$(pkg))
63
+ _gir_includes = $(foreach include,$($(_gir_name)_INCLUDES),--include=$(include))
64
+ _gir_export_packages = $(foreach pkg,$($(_gir_name)_EXPORT_PACKAGES),--pkg-export=$(pkg))
65
+
66
+ # Reuse the LIBTOOL variable from automake if it's set, but
67
+ # work around MSYS weirdness: When running g-ir-scanner, MSYS changes
68
+ # a command-line argument --libtool="/bin/sh ../../libtool" into
69
+ # --libtool=c:/opt/msys/1.0/bin/libtool. So just use sh.exe without path
70
+ # because we already "know" where the libtool configure produced is.
71
+ _gir_libtool = $(if $(findstring MINGW32,$(shell uname -s)),--libtool="$(top_builddir)/libtool",$(if $(LIBTOOL),--libtool="$(LIBTOOL)"))
72
+
73
+ # Macros for AM_SILENT_RULES prettiness
74
+ _gir_verbosity = $(if $(AM_DEFAULT_VERBOSITY),$(AM_DEFAULT_VERBOSITY),1)
75
+
76
+ _gir_silent_scanner_prefix = $(_gir_silent_scanner_prefix_$(V))
77
+ _gir_silent_scanner_prefix_ = $(_gir_silent_scanner_prefix_$(_gir_verbosity))
78
+ _gir_silent_scanner_prefix_0 = @echo " GISCAN $(1)";
79
+ _gir_silent_scanner_opts = $(_gir_silent_scanner_opts_$(V))
80
+ _gir_silent_scanner_opts_ = $(_gir_silent_scanner_opts_$(_gir_verbosity))
81
+ _gir_silent_scanner_opts_0 = --quiet
82
+
83
+ _gir_silent_compiler = $(_gir_silent_compiler_$(V))
84
+ _gir_silent_compiler_ = $(_gir_silent_compiler_$(_gir_verbosity))
85
+ _gir_silent_compiler_0 = @echo " GICOMP $(1)";
86
+
87
+ #
88
+ # Creates a GIR by scanning C headers/sources
89
+ # $(1) - Name of the gir file (output)
90
+ #
91
+ # If output is Gtk-2.0.gir then you should name the variables like
92
+ # Gtk_2_0_gir_NAMESPACE, Gtk_2_0_gir_VERSION etc.
93
+ # Required variables:
94
+ # FILES - C sources and headers which should be scanned
95
+ #
96
+ # One of these variables are required:
97
+ # LIBS - Library where the symbol represented in the gir can be found
98
+ # PROGRAM - Program where the symbol represented in the gir can be found
99
+ #
100
+ # Optional variables
101
+ # NAMESPACE - Namespace of the gir, first letter capital,
102
+ # rest should be lower case, for instance: 'Gtk', 'Clutter', 'ClutterGtk'.
103
+ # If not present the namespace will be fetched from the gir filename,
104
+ # the part before the first dash. For 'Gtk-2.0', namespace will be 'Gtk'.
105
+ # VERSION - Version of the gir, if not present, will be fetched from gir
106
+ # filename, the part after the first dash. For 'Gtk-2.0', version will be '2.0'.
107
+ # LIBTOOL - Command to invoke libtool, usually set by automake
108
+ # SCANNERFLAGS - Flags to pass in to the scanner, see g-ir-scanner(1) for a list
109
+ # CFLAGS - Flags to pass in to the parser when scanning headers
110
+ # LDFLAGS - Linker flags used by the scanner
111
+ # PACKAGES - list of pkg-config names which cflags are required to parse
112
+ # the headers of this gir
113
+ # INCLUDES - Gir files to include without the .gir suffix, for instance
114
+ # GLib-2.0, Gtk-2.0. This is needed for all libraries which you depend on that
115
+ # provides introspection information.
116
+ # EXPORT_PACKAGES - list of pkg-config names that are provided by this gir.
117
+ # By default the names in the PACKAGES variable will be used.
118
+ #
119
+
120
+ define introspection-scanner
121
+
122
+ # Basic sanity check, to make sure required variables are set
123
+ $(if $($(_gir_name)_FILES),,$(error Need to define $(_gir_name)_FILES))
124
+ $(if $(or $(findstring --header-only,$($(_gir_name)_SCANNERFLAGS)),
125
+ $($(_gir_name)_LIBS),
126
+ $($(_gir_name)_PROGRAM)),,
127
+ $(error Need to define $(_gir_name)_LIBS or $(_gir_name)_PROGRAM))
128
+
129
+ # Only dependencies we know are actually filenames goes into _FILES, make
130
+ # sure these are built before running the scanner. Libraries and programs
131
+ # needs to be added manually.
132
+ $(1): $$($(_gir_name)_FILES)
133
+ @ $(MKDIR_P) $(dir $(1))
134
+ $(_gir_silent_scanner_prefix) $(INTROSPECTION_SCANNER_ENV) $(INTROSPECTION_SCANNER) $(_gir_silent_scanner_opts) \
135
+ $(INTROSPECTION_SCANNER_ARGS) \
136
+ --namespace=$(_gir_namespace) \
137
+ --nsversion=$(_gir_version) \
138
+ $(_gir_libtool) \
139
+ $(_gir_packages) \
140
+ $(_gir_includes) \
141
+ $(_gir_export_packages) \
142
+ $(_gir_program) \
143
+ $(_gir_libraries) \
144
+ $($(_gir_name)_SCANNERFLAGS) \
145
+ --cflags-begin \
146
+ $($(_gir_name)_CFLAGS) \
147
+ --cflags-end \
148
+ $($(_gir_name)_LDFLAGS) \
149
+ $$^ \
150
+ --output $(1)
151
+ endef
152
+
153
+ $(foreach gir,$(INTROSPECTION_GIRS),$(eval $(call introspection-scanner,$(gir))))
154
+
155
+ #
156
+ # Compiles a gir into a typelib
157
+ # $(1): gir filename (input)
158
+ # $(2): typelib filename (output)
159
+ #
160
+ define introspection-compiler
161
+ $(_gir_silent_compiler) $(INTROSPECTION_COMPILER) $(INTROSPECTION_COMPILER_ARGS) --includedir=. $(1) -o $(2)
162
+ endef
163
+
164
+ # Simple rule to compile a typelib.
165
+ %.typelib: %.gir
166
+ $(call introspection-compiler,$<,$@)