bugzilla-daemon at mindrot.org
2006-Feb-02 05:50 UTC
[Bug 1148] configure's crippled AES test fails on Sun CC
http://bugzilla.mindrot.org/show_bug.cgi?id=1148
Summary: configure's crippled AES test fails on Sun CC
Product: Portable OpenSSH
Version: 4.3p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: Build system
AssignedTo: bitbucket at mindrot.org
ReportedBy: alex.kiernan at thus.net
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)
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
bugzilla-daemon at mindrot.org
2006-Feb-02 07:55 UTC
[Bug 1148] configure's crippled AES test fails on Sun CC
http://bugzilla.mindrot.org/show_bug.cgi?id=1148
dtucker at zip.com.au changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Comment #1 from dtucker at zip.com.au 2006-02-02 18:55 -------
Patch applied, thanks.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.