diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-10-02 07:42:03 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-10-02 07:42:03 +0000 |
commit | dd8b126f8099a7a9bb971f95d80b8668a816988b (patch) | |
tree | 51ad0c2b4851e3487e0d0c7c40e5325503ab1bb7 /lib | |
parent | 7aedf20cf614e8f5d3c428f8bf1cccd8bc43b8b6 (diff) |
percolate up errors from perl asm scripts, correctly enable SHA-256 asm on
amd64
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/crypto/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index d85aa913dab..cdb94a2931a 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.54 2010/10/01 23:01:54 djm Exp $ +# $OpenBSD: Makefile,v 1.55 2010/10/02 07:42:02 djm Exp $ LIB= crypto WANTLINT= @@ -514,6 +514,7 @@ SRCS+= fcrypt_b.c CFLAGS+= -DAES_ASM CFLAGS+= -DMD5_ASM CFLAGS+= -DSHA1_ASM +CFLAGS+= -DSHA256_ASM CFLAGS+= -DSHA512_ASM CFLAGS+= -DOPENSSL_CPUID_OBJ CFLAGS+= -DOPENSSL_BN_ASM_MONT @@ -531,21 +532,20 @@ SSLASM=\ SRCS+= ${f}.S GENERATED+=${f}.S ${f}.S: ${LCRYPTO_SRC}/${dir}/asm/${f}.pl - (cd ${LCRYPTO_SRC}/${dir} ; \ + (set -e ; cd ${LCRYPTO_SRC}/${dir} ; \ /usr/bin/perl ./asm/${f}.pl openbsd-elf) > ${.TARGET} .endfor -SRCS+= x86_64cpuid.S -GENERATED+=x86_64cpuid.S +SRCS+= x86_64cpuid.S sha256-x86_64.S sha512-x86_64.S +GENERATED+=x86_64cpuid.S sha256-x86_64.S sha512-x86_64.S x86_64cpuid.S: ${LCRYPTO_SRC}/x86_64cpuid.pl - (cd ${LCRYPTO_SRC}/${dir} ; /usr/bin/perl ./x86_64cpuid.pl) > ${.TARGET} + (set -e ; cd ${LCRYPTO_SRC}/${dir} ; \ + /usr/bin/perl ./x86_64cpuid.pl) > ${.TARGET} sha256-x86_64.S: ${LCRYPTO_SRC}/sha/asm/sha512-x86_64.pl - (cd ${LCRYPTO_SRC}/sha/asm ; \ + (set -e ; cd ${LCRYPTO_SRC}/sha/asm ; \ /usr/bin/perl ./sha512-x86_64.pl ${.OBJDIR}/${.TARGET}) sha512-x86_64.S: ${LCRYPTO_SRC}/sha/asm/sha512-x86_64.pl - (cd ${LCRYPTO_SRC}/sha/asm ; \ + (set -e ; cd ${LCRYPTO_SRC}/sha/asm ; \ /usr/bin/perl ./sha512-x86_64.pl ${.OBJDIR}/${.TARGET}) -SRCS+= sha256-x86_64.S sha512-x86_64.S -GENERATED+=sha256-x86_64.S sha512-x86_64.S .else # XXX ppccpuid.pl CFLAGS+=-DOPENSSL_NO_ASM |