lib/remote: Export ostree_remote_get_type symbol
Without this, you can't really use OstreeRemote as a GObject, which is a requirement for bindings. This was found when attempting to include OstreeRemote in the GIR, and g-ir-scanner wasn't able to link it's temporary object due to an "undefined reference to `ostree_remote_get_type'" error. Closes: #1337 Approved by: pwithnall
This commit is contained in:
parent
374f7fc973
commit
a256b2d1a3
|
|
@ -19,6 +19,8 @@ OstreeRemote
|
||||||
ostree_remote_ref
|
ostree_remote_ref
|
||||||
ostree_remote_unref
|
ostree_remote_unref
|
||||||
ostree_remote_get_name
|
ostree_remote_get_name
|
||||||
|
<SUBSECTION Standard>
|
||||||
|
ostree_remote_get_type
|
||||||
</SECTION>
|
</SECTION>
|
||||||
|
|
||||||
<SECTION>
|
<SECTION>
|
||||||
|
|
|
||||||
|
|
@ -89,3 +89,8 @@ global:
|
||||||
ostree_repo_finder_override_get_type;
|
ostree_repo_finder_override_get_type;
|
||||||
ostree_repo_finder_override_new;
|
ostree_repo_finder_override_new;
|
||||||
} LIBOSTREE_2017.12_EXPERIMENTAL;
|
} LIBOSTREE_2017.12_EXPERIMENTAL;
|
||||||
|
|
||||||
|
LIBOSTREE_2017.14_EXPERIMENTAL {
|
||||||
|
global:
|
||||||
|
ostree_remote_get_type;
|
||||||
|
} LIBOSTREE_2017.13_EXPERIMENTAL;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue