Skip to content

Commit

Permalink
cmake: Remove the private tag from the openssl requirement
Browse files Browse the repository at this point in the history
- It's trigging a Conan bug with software that uses libxml2, such as
  PDFAlchemist.

- The problem is that the private requirement is skipped, and there's no
  cpp_info, and that's not checked when doing an internal Conan
  conversion.

See: conan-io/conan#10439
  • Loading branch information
datalogics-kam committed Dec 12, 2022
1 parent a11154e commit 1bc1d18
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/cmake/3.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def config_options(self):

def requirements(self):
if self.options.with_openssl:
self.requires("openssl/1.1.1s", private=True)
self.requires("openssl/1.1.1s")

def validate(self):
if self.settings.os == "Macos" and self.settings.arch == "x86":
Expand Down

0 comments on commit 1bc1d18

Please sign in to comment.