Skip to content

Commit

Permalink
Include libcrypto when linking
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisroberts committed May 26, 2023
1 parent aef6b80 commit 8eeaca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/vagrant_ssl/extconf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
append_ldflags(Shellwords.shellwords(ENV["LDFLAGS"])) if ENV["LDFLAGS"]

if have_header("openssl/opensslv.h")
append_ldflags(["-lssl"])
append_ldflags(["-lssl", "-lcrypto"])
create_makefile("vagrant_ssl")
else
# If the header file isn't found, just create a dummy
Expand Down

0 comments on commit 8eeaca2

Please sign in to comment.