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.
- checksums.yaml +7 -0
- data/Rakefile +129 -0
- data/ext/gobject-introspection/depend +10 -0
- data/ext/gobject-introspection/extconf.rb +94 -0
- data/ext/gobject-introspection/gobject_introspection.def +5 -0
- data/ext/gobject-introspection/rb-gi-arg-info.c +151 -0
- data/ext/gobject-introspection/rb-gi-argument.c +2053 -0
- data/ext/gobject-introspection/rb-gi-base-info.c +218 -0
- data/ext/gobject-introspection/rb-gi-boxed-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-callable-info.c +104 -0
- data/ext/gobject-introspection/rb-gi-callback-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-constant-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-constructor-info.c +133 -0
- data/ext/gobject-introspection/rb-gi-conversions.h +145 -0
- data/ext/gobject-introspection/rb-gi-enum-info.c +155 -0
- data/ext/gobject-introspection/rb-gi-field-info.c +153 -0
- data/ext/gobject-introspection/rb-gi-flags-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-function-info.c +841 -0
- data/ext/gobject-introspection/rb-gi-interface-info.c +222 -0
- data/ext/gobject-introspection/rb-gi-loader.c +224 -0
- data/ext/gobject-introspection/rb-gi-method-info.c +83 -0
- data/ext/gobject-introspection/rb-gi-object-info.c +345 -0
- data/ext/gobject-introspection/rb-gi-private.h +105 -0
- data/ext/gobject-introspection/rb-gi-property-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-registered-type-info.c +86 -0
- data/ext/gobject-introspection/rb-gi-repository.c +246 -0
- data/ext/gobject-introspection/rb-gi-signal-info.c +77 -0
- data/ext/gobject-introspection/rb-gi-struct-info.c +202 -0
- data/ext/gobject-introspection/rb-gi-type-info.c +143 -0
- data/ext/gobject-introspection/rb-gi-type-tag.c +43 -0
- data/ext/gobject-introspection/rb-gi-types.h +71 -0
- data/ext/gobject-introspection/rb-gi-union-info.c +206 -0
- data/ext/gobject-introspection/rb-gi-unresolved-info.c +48 -0
- data/ext/gobject-introspection/rb-gi-value-info.c +57 -0
- data/ext/gobject-introspection/rb-gi-vfunc-info.c +91 -0
- data/ext/gobject-introspection/rb-gobject-introspection.c +44 -0
- data/ext/gobject-introspection/rb-gobject-introspection.h +60 -0
- data/extconf.rb +71 -0
- data/lib/2.0/gobject_introspection.so +0 -0
- data/lib/2.1/gobject_introspection.so +0 -0
- data/lib/2.2/gobject_introspection.so +0 -0
- data/lib/gobject-introspection.rb +53 -0
- data/lib/gobject-introspection/boxed-info.rb +28 -0
- data/lib/gobject-introspection/callable-info.rb +100 -0
- data/lib/gobject-introspection/collection-reader.rb +34 -0
- data/lib/gobject-introspection/interface-info.rb +32 -0
- data/lib/gobject-introspection/loader.rb +465 -0
- data/lib/gobject-introspection/object-info.rb +33 -0
- data/lib/gobject-introspection/repository.rb +32 -0
- data/lib/gobject-introspection/struct-info.rb +28 -0
- data/lib/gobject-introspection/union-info.rb +28 -0
- data/test/gobject-introspection-test-utils.rb +26 -0
- data/test/run-test.rb +45 -0
- data/test/test-arg-info.rb +68 -0
- data/test/test-base-info.rb +31 -0
- data/test/test-boxed-info.rb +21 -0
- data/test/test-callable-info.rb +49 -0
- data/test/test-callback-info.rb +29 -0
- data/test/test-constant-info.rb +24 -0
- data/test/test-enum-info.rb +61 -0
- data/test/test-field-type.rb +42 -0
- data/test/test-flags-info.rb +27 -0
- data/test/test-function-info.rb +39 -0
- data/test/test-interface-info.rb +97 -0
- data/test/test-loader.rb +30 -0
- data/test/test-object-info.rb +131 -0
- data/test/test-property-info.rb +38 -0
- data/test/test-registered-type-info.rb +35 -0
- data/test/test-repository.rb +62 -0
- data/test/test-signal-info.rb +40 -0
- data/test/test-struct-info.rb +57 -0
- data/test/test-type-info.rb +62 -0
- data/test/test-type-tag.rb +29 -0
- data/test/test-union-info.rb +21 -0
- data/test/test-value-info.rb +28 -0
- data/test/test-vfunc-info.rb +42 -0
- data/vendor/local/bin/g-ir-compiler.exe +0 -0
- data/vendor/local/bin/g-ir-generate.exe +0 -0
- data/vendor/local/bin/libgirepository-1.0-1.dll +0 -0
- data/vendor/local/include/gobject-introspection-1.0/giarginfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gibaseinfo.h +120 -0
- data/vendor/local/include/gobject-introspection-1.0/gicallableinfo.h +110 -0
- data/vendor/local/include/gobject-introspection-1.0/giconstantinfo.h +58 -0
- data/vendor/local/include/gobject-introspection-1.0/gienuminfo.h +82 -0
- data/vendor/local/include/gobject-introspection-1.0/gifieldinfo.h +71 -0
- data/vendor/local/include/gobject-introspection-1.0/gifunctioninfo.h +100 -0
- data/vendor/local/include/gobject-introspection-1.0/giinterfaceinfo.h +106 -0
- data/vendor/local/include/gobject-introspection-1.0/giobjectinfo.h +207 -0
- data/vendor/local/include/gobject-introspection-1.0/gipropertyinfo.h +56 -0
- data/vendor/local/include/gobject-introspection-1.0/giregisteredtypeinfo.h +64 -0
- data/vendor/local/include/gobject-introspection-1.0/girepository.h +239 -0
- data/vendor/local/include/gobject-introspection-1.0/girffi.h +104 -0
- data/vendor/local/include/gobject-introspection-1.0/gisignalinfo.h +57 -0
- data/vendor/local/include/gobject-introspection-1.0/gistructinfo.h +77 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypeinfo.h +87 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypelib.h +80 -0
- data/vendor/local/include/gobject-introspection-1.0/gitypes.h +524 -0
- data/vendor/local/include/gobject-introspection-1.0/giunioninfo.h +84 -0
- data/vendor/local/include/gobject-introspection-1.0/giversionmacros.h +128 -0
- data/vendor/local/include/gobject-introspection-1.0/givfuncinfo.h +73 -0
- data/vendor/local/lib/girepository-1.0/DBus-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/DBusGLib-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GIRepository-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GL-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GLib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GModule-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/GObject-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/Gio-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/cairo-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/fontconfig-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/freetype2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/libxml2-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/win32-1.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xfixes-4.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xft-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xlib-2.0.typelib +0 -0
- data/vendor/local/lib/girepository-1.0/xrandr-1.3.typelib +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.py +24 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.py +2161 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/annotationparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.py +1139 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ast.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/cachestore.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.py +202 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/ccompiler.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.py +173 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/codegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.py +23 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/__init__.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.py +305 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/counter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.py +120 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/collections/ordereddict.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.py +72 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docmain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/callback.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/class.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/enum.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/function.tmpl +60 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/interface.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/namespace.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/property.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/record.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/signal.tmpl +5 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/C/vfunc.tmpl +4 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/class.tmpl +30 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/enum.tmpl +21 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/field.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/interface.tmpl +17 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/signal.tmpl +38 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Gjs/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/callback.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/class.tmpl +18 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/constructor.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/default.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/enum.tmpl +13 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/field.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/function.tmpl +47 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/interface.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/method.tmpl +1 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/namespace.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/property.tmpl +9 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/record.tmpl +2 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/signal.tmpl +41 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/Python/vfunc.tmpl +27 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/base.tmpl +20 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/class.tmpl +61 -0
- data/vendor/local/lib/gobject-introspection/giscanner/doctemplates/namespace.tmpl +16 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.py +958 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/docwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.py +338 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/dumper.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.py +529 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/gdumpparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.py +593 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.py +612 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/girwriter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.py +240 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/introspectablepass.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.py +76 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/libtoolimporter.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.py +1366 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/maintransformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.py +203 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/message.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.py +561 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/scannermain.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.py +152 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sectionparser.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.py +140 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/shlibs.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.py +329 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/sourcescanner.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.py +136 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/testcodegen.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.py +971 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/transformer.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.py +211 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/utils.pyo +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.py +156 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyc +0 -0
- data/vendor/local/lib/gobject-introspection/giscanner/xmlwriter.pyo +0 -0
- data/vendor/local/lib/libgirepository-1.0.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.dll.a +0 -0
- data/vendor/local/lib/libgirepository-1.0.la +41 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-1.0.pc +26 -0
- data/vendor/local/lib/pkgconfig/gobject-introspection-no-export-1.0.pc +23 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/introspection.m4 +96 -0
- data/vendor/local/share/gir-1.0/DBus-1.0.gir +32 -0
- data/vendor/local/share/gir-1.0/DBusGLib-1.0.gir +18 -0
- data/vendor/local/share/gir-1.0/GIRepository-2.0.gir +4042 -0
- data/vendor/local/share/gir-1.0/GL-1.0.gir +31 -0
- data/vendor/local/share/gir-1.0/GLib-2.0.gir +47221 -0
- data/vendor/local/share/gir-1.0/GModule-2.0.gir +301 -0
- data/vendor/local/share/gir-1.0/GObject-2.0.gir +14733 -0
- data/vendor/local/share/gir-1.0/Gio-2.0.gir +82459 -0
- data/vendor/local/share/gir-1.0/cairo-1.0.gir +70 -0
- data/vendor/local/share/gir-1.0/fontconfig-2.0.gir +18 -0
- data/vendor/local/share/gir-1.0/freetype2-2.0.gir +22 -0
- data/vendor/local/share/gir-1.0/libxml2-2.0.gir +25 -0
- data/vendor/local/share/gir-1.0/win32-1.0.gir +19 -0
- data/vendor/local/share/gir-1.0/xfixes-4.0.gir +10 -0
- data/vendor/local/share/gir-1.0/xft-2.0.gir +23 -0
- data/vendor/local/share/gir-1.0/xlib-2.0.gir +67 -0
- data/vendor/local/share/gir-1.0/xrandr-1.3.gir +16 -0
- data/vendor/local/share/gobject-introspection-1.0/Makefile.introspection +166 -0
- data/vendor/local/share/gobject-introspection-1.0/gdump.c +569 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.c +831 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/annotation.h +301 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.c +57 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/drawable.h +44 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.c +1579 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/everything.h +535 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.c +790 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/foo.h +582 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.c +5426 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gimarshallingtests.h +1948 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/gitestmacros.h +10 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.c +4068 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/regress.h +1415 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/utility.h +102 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.c +47 -0
- data/vendor/local/share/gobject-introspection-1.0/tests/warnlib.h +46 -0
- data/vendor/local/share/license/gobject-introspection/AUTHORS +9 -0
- data/vendor/local/share/license/gobject-introspection/COPYING +12 -0
- data/vendor/local/share/man/man1/g-ir-compiler.1 +42 -0
- data/vendor/local/share/man/man1/g-ir-generate.1 +29 -0
- 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,$<,$@)
|