Skip to content

Commit

Permalink
openssl/3.x.x: port conan-io#4698 fix rt dependency for SUSE11
Browse files Browse the repository at this point in the history
Co-Authored-By: Alexey Klimkin <klimkin@gmail.com>
  • Loading branch information
Croydon and klimkin committed Sep 9, 2021
1 parent 1358200 commit 0767f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/openssl/3.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def package_info(self):
if self.settings.os == "Windows":
self.cpp_info.components["crypto"].system_libs.extend(["crypt32", "ws2_32", "advapi32", "user32"])
elif self.settings.os == "Linux":
self.cpp_info.components["crypto"].system_libs.append("dl")
self.cpp_info.components["crypto"].system_libs.extend(["dl", "rt"])
self.cpp_info.components["ssl"].system_libs.append("dl")
if not self.options.no_threads:
self.cpp_info.components["crypto"].system_libs.append("pthread")
Expand Down

0 comments on commit 0767f32

Please sign in to comment.