Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GStreamer: Added new versions and conan v2 support #14907

Closed
wants to merge 10 commits into from
Prev Previous commit
Next Next commit
Update recipes/gstreamer/all/conanfile.py
self.info is only for package ID

Co-authored-by: Chris Mc <prince.chrismc@gmail.com>
  • Loading branch information
larshg and prince-chrismc authored Jan 2, 2023
commit fca71749ed48ff3308f9179f25792bed332ec813
2 changes: 1 addition & 1 deletion recipes/gstreamer/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def requirements(self):
self.requires("glib/2.75.0")

def validate(self):
if not self.dependencies.direct_host["glib"].options.shared and self.info.options.shared:
if not self.dependencies.direct_host["glib"].options.shared and self.options.shared:
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

# https://gitlab.freedesktop.org/gstreamer/gst-build/-/issues/133
raise ConanInvalidConfiguration(
"shared GStreamer cannot link to static GLib")
Expand Down