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

openssl: regenerate binaries #15361

Merged
merged 1 commit into from
Jan 19, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions recipes/openssl/1.x.x/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
required_conan_version = ">=1.53.0"

@total_ordering
class OpenSSLVersion(object):
class OpenSSLVersion:
def __init__(self, version):
self._pre = ""
version_str = str(version)
Expand Down Expand Up @@ -328,6 +328,8 @@ def _perlasm_scheme(self):

@property
def _asm_target(self):
# FIXME This function is broken since https://github.com/conan-io/conan-center-index/pull/791
# either it returns None (because the_os is not a key of the map below), or it does not return
the_os = str(self.settings.os)
if the_os in ["Android", "iOS", "watchOS", "tvOS"]:
return {
Expand Down Expand Up @@ -736,7 +738,7 @@ def build(self):
autotools.make()
else:
if self._full_version >= "1.1.0":
self.run(f'nmake /F Makefile')
self.run('nmake /F Makefile')
else: # nmake 1.0.2 support
# Note: 1.0.2 should not be used according to the OpenSSL Project
# See https://www.openssl.org/source/
Expand Down