Skip to content

Commit

Permalink
(#5357) libcurl: fix darwinssl option
Browse files Browse the repository at this point in the history
with-darwinssl option in configure.ac has been renamed with-secure-transport since 7.64.1
curl/curl@76a9c3c
  • Loading branch information
SpaceIm authored May 2, 2021
1 parent 4a12022 commit a10f21f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/libcurl/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def _get_configure_command_args(self):
"--with-libmetalink={}".format(yes_no(self.options.with_libmetalink)),
"--with-libpsl={}".format(yes_no(self.options.with_libpsl)),
"--with-schannel={}".format(yes_no(self.options.with_ssl == "schannel")),
"--with-darwinssl={}".format(yes_no(self.options.with_ssl == "darwinssl")),
"--with-secure-transport={}".format(yes_no(self.options.with_ssl == "darwinssl")),
"--with-brotli={}".format(yes_no(self.options.with_brotli)),
"--enable-shared={}".format(yes_no(self.options.shared)),
"--enable-static={}".format(yes_no(not self.options.shared)),
Expand Down

0 comments on commit a10f21f

Please sign in to comment.