| Summary: | configure's crippled AES test fails on Sun CC | ||
|---|---|---|---|
| Product: | Portable OpenSSH | Reporter: | Alex Kiernan <alex.kiernan> |
| Component: | Build system | Assignee: | Assigned to nobody <unassigned-bugs> |
| Status: | CLOSED FIXED | ||
| Severity: | normal | ||
| Priority: | P2 | ||
| Version: | 4.3p1 | ||
| Hardware: | All | ||
| OS: | All | ||
Patch applied, thanks. Change all RESOLVED bug to CLOSED with the exception of the ones fixed post-4.4. |
Using Sun CC rather than gcc the crippled AES test fails because of a missing semicolon (regardless of whether it should fail or not). The fix is trivial: --- configure.ac.orig 2006-02-02 05:46:02.000000000 +0000 +++ configure.ac 2006-02-02 05:46:13.000000000 +0000 @@ -1827,7 +1827,7 @@ [AC_LANG_SOURCE([[ #include <string.h> #include <openssl/evp.h> -int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL)} +int main(void) { exit(EVP_aes_192_cbc() == NULL || EVP_aes_256_cbc() == NULL);} ]])], [ AC_MSG_RESULT(no)