On 18/07/13 23:46, Michael Jerris wrote:
> If you don't remove that block from the code after that other var was added… 
> it will cause this error to come back on that branch now that you've forced 
> the 64bit align
> 

Ok, patching it like this:

--- a/crypto/include/cipher.h
+++ b/crypto/include/cipher.h
@@ -161,8 +161,9 @@ typedef struct cipher_t {
   void          *state;
   int            key_len;
 #ifdef FORCE_64BIT_ALIGN
-  int            pad;
+  //int            pad;
 #endif
+  int algorithm;
 } cipher_t;


and using

CFLAGS += -DFORCE_64BIT_ALIGN

gives me an successful runtest on sparc first time around.  The build
still fails later during the doc phase on sparc, but that is unrelated
to all this.

I also tested on amd64 / x86_64 without FORCE_64BIT_ALIGN and it builds
successfully.


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to