-
Notifications
You must be signed in to change notification settings - Fork 14
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
Update OpenSSL system_check #52
Comments
OpenSSL 1.1.1f 31 Mar 2020 by replacing in above check OPENSSL_VERSION_NUMBER >= 0x10100000L by OPENSSL_VERSION_NUMBER >= 0x20100000L, system version is picked up. |
Shouldn't |
see above. installed OpenSSL version is 1.1.1f. will trying with system version. XrootD compiled: |
If I understand this correctly, it might be a good idea to use Edit: |
Could you assign me to this issue? |
Don't understand why this check fails. Maybe the check syntax is wrong? I do have the include files. version is: OpenSSL 1.1.1f 31 Mar 2020
WARNING: Package OpenSSL cannot be picked up from the system and will be built by aliBuild.
WARNING: This is due to the fact the following script fails:
WARNING:
WARNING: brew() { true; }; if [
uname
= Darwin ]; then test -dbrew --prefix openssl || echo /dev/nope
|| exit 1; fi; echo '#include <openssl/bio.h>' | c++ -x c++ - -Ibrew --prefix openssl
/include -c -o /dev/null || exit 1; echo -e "#include <openssl/opensslv.h>\n#if OPENSSL_VERSION_NUMBER >= 0x10100000L\n#error "System's GCC cannot be used: we need OpenSSL 1.0.x to build XrootD. We are going to compile our own version."\n#endif\nint main() { }" | cc -xc++ - -c -o /dev/null || exit 1WARNING:
WARNING: with the following output:
WARNING:
WARNING: OpenSSL: :3:2: error: #error "System's GCC cannot be used: we need OpenSSL 1.0.x to build XrootD. We are going to compile our own version."
The text was updated successfully, but these errors were encountered: