Skip to content

Commit

Permalink
pulseaudio: make xorg requirement more specifc
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jan 10, 2024
1 parent 3736847 commit db39000
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions recipes/pulseaudio/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def requirements(self):
if self.options.with_alsa:
self.requires("libalsa/1.2.10")
if self.options.with_glib:
self.requires("glib/2.78.1")
self.requires("glib/2.78.3")
if self.options.get_safe("with_fftw"):
self.requires("fftw/3.3.10")
if self.options.with_x11:
Expand All @@ -89,7 +89,7 @@ def build_requirements(self):
self.tool_requires("gettext/0.21")
self.tool_requires("libtool/2.4.7")
if not self.conf.get("tools.gnu:pkg_config", check_type=str):
self.tool_requires("pkgconf/2.0.3")
self.tool_requires("pkgconf/2.1.0")

def source(self):
get(self, **self.conan_data["sources"][self.version], strip_root=True)
Expand Down Expand Up @@ -146,7 +146,7 @@ def package_info(self):
if self.options.get_safe("with_fftw"):
self.cpp_info.components["pulse"].requires.append("fftw::fftw")
if self.options.with_x11:
self.cpp_info.components["pulse"].requires.append("xorg::xorg")
self.cpp_info.components["pulse"].requires.append("xorg::x11")
if self.options.with_openssl:
self.cpp_info.components["pulse"].requires.append("openssl::openssl")
if self.options.with_dbus:
Expand Down

0 comments on commit db39000

Please sign in to comment.