PeterMosmans / openssl

'Extra featured' OpenSSL with ChaCha20 and Poly1305 support
https://onwebsecurity.com/pages/openssl.html
Other
92 stars 18 forks source link

Wrong configure line for mips64_asm #18

Closed raybondo closed 9 years ago

raybondo commented 9 years ago

The line for mips64_asm has an incorrect number of colons. It is currently my $mips64_asm=":bn-mips.o mips-mont.o::aes_cbc.o aes-mips.o:::sha1-mips.o sha256-mips.o sha512-mips.o::::::::::";

but should be my $mips64_asm=":bn-mips.o mips-mont.o:::aes_cbc.o aes-mips.o:::sha1-mips.o sha256-mips.o sha512-mips.o::::::::::";

There's a missing colon between the mips-mont.o and aes_cbc.o. This was causing the mips64 and 32 versions to fail to build.

PeterMosmans commented 9 years ago

Thanks for reporting this issue @raybondo, much appreciated. I found other discrepancies as well when running a fresh make TABLE. I'm working on it...