Fix openssl include path directory#271
Fix openssl include path directory#271walac merged 1 commit intoexpertisesolutions:devs/expertise/native-windowsfrom
Conversation
|
This makes sense with new versions of meson, but what errors are you getting with openssl? |
|
This makes compilations to break for me: Is it expected? |
Oh, I see, could you try removing that extra |
The include files are not found. |
Could you check if is this same issue? |
When using prebuilt packages, the library are stored inside the '/lib' subdirectory.
Yeah, the problem is that I use a prebuilt version of OpenSSL, where the lib files are inside a |
joaoantoniocardoso
left a comment
There was a problem hiding this comment.
Nice, I just tested and found no issues here with this mod.
| if (get_option('openssl_dir') != '') | ||
| crypto = declare_dependency( | ||
| link_args: ['-L' + get_option('openssl_dir'), '-llibssl_static', '-llibcrypto_static'], | ||
| link_args: ['-L' + get_option('openssl_dir'), '-L' + get_option('openssl_dir') + '/lib', '-llibssl_static', '-llibcrypto_static'], |
There was a problem hiding this comment.
I think it should be get_option('openssl_dir') / 'lib', but...
There was a problem hiding this comment.
It feels like the CI has a version of meson that doesn't support the syntax.
There was a problem hiding this comment.
Windows CI version is always the updated from PyPI (0.54.3), so it should support. Didn't check Travis, tho
No description provided.