-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
[deps/libssh2]: fix import library name #45914
[deps/libssh2]: fix import library name #45914
Conversation
Co-Authored-By: Jameson Nash <[email protected]>
https://github.com/JuliaBinaryWrappers/LibSSH2_jll.jl/releases
|
That's not a static library, but an import library. |
Looks good to me! Do we need to do this in Yggdrasil as well? |
I think it's good to apply this patch to Yggdrasil. To avoid breaking libraries that already depend on the name |
`liblibssh2.dll.a` ==> `libssh2.dll.a` xref: JuliaLang/julia#45914
* [LibSSH2] Fix import lib name on windows `liblibssh2.dll.a` ==> `libssh2.dll.a` xref: JuliaLang/julia#45914 * [LibSSH2] copy import lib to maintain backwards compatibility copy `libssh2.dll.a` => `liblibssh2.dll.a` * [libSSH2] Revert a4df288
Merge? |
xref issue: #45645 (comment)
import lib should be named
libssh2.dll.a
instead ofliblibssh2.dll.a
.