<html><head></head><body><div>Le jeudi 04 mars 2021 à 18:47 -0500, Olivier Crête a écrit :</div><blockquote type="cite" style="margin:0 0 0 .8ex; border-left:2px #729fcf solid;padding-left:1ex"><div>Hi,</div><div><br></div><div>Those symbols are from the library, not from the plugin. The simple reason the libnice plugin isn't included is that I think you need to do some meson magic inside the libnice build system to make it be included... and, with my libnice maintainer hat on, I have no idea what this is, so merge requests are welcome ;)</div></blockquote><div><br></div><div>Ah, it uses introspection, just like gst-env.py, just need to define a plugins array somewhere. Sent an MR.</div><div><br></div><div><a href="https://gitlab.freedesktop.org/libnice/libnice/-/merge_requests/190">https://gitlab.freedesktop.org/libnice/libnice/-/merge_requests/190</a></div><div><br></div><pre>commit c4c58f22917c2519f3d64ba67cb8fe993c31f9f3 (HEAD -> gst-env-fix, dev/gst-env-fix)</pre><pre>Author: Nicolas Dufresne <<a href="mailto:nicolas.dufresne@collabora.com">nicolas.dufresne@collabora.com</a>></pre><pre>Date:   Thu Mar 4 21:18:47 2021 -0500</pre><pre><br></pre><pre>    gst: Fix gst-env and libgstreamer-full.so suppport</pre><pre>    </pre><pre>    gst-build uses meson introspection and reads the plugins array of each</pre><pre>    subproject in order to locate the plugins. Setting libnice plugins array allow</pre><pre>    enabling nice plugin in both gst-env.py and when building single library</pre><pre>    libgstreamer-full.so.</pre><pre><br></pre><pre>diff --git a/gst/meson.build b/gst/meson.build</pre><pre>index 091a37f..572c6ab 100644</pre><pre>--- a/gst/meson.build</pre><pre>+++ b/gst/meson.build</pre><pre>@@ -16,6 +16,7 @@ libgstnice = library('gstnice',</pre><pre>   link_with: libnice,</pre><pre>   install_dir: gst_plugins_install_dir,</pre><pre>   install: true)</pre><pre>+plugins = [libgstnice]</pre><pre> </pre><pre> # Generate pc files for static plugins if we build static plugins</pre><pre> if get_option('default_library') != 'shared'</pre><pre>---</pre><pre><span></span></pre></body></html>