diff options
author | thib <> | 2010-07-01 17:44:57 +0000 |
---|---|---|
committer | thib <> | 2010-07-01 17:44:57 +0000 |
commit | e4c70aa4049893c4baf3b1763814edc161dc662a (patch) | |
tree | 288f0da04b8e45dad7b699ebe29005475255a08a | |
parent | aaf95101ecdb076e7121125b5b59b79338f68e63 (diff) | |
download | openbsd-e4c70aa4049893c4baf3b1763814edc161dc662a.tar.gz openbsd-e4c70aa4049893c4baf3b1763814edc161dc662a.tar.bz2 openbsd-e4c70aa4049893c4baf3b1763814edc161dc662a.zip |
oops. Missed this from my aes-ni commit.
-rw-r--r-- | src/lib/libssl/crypto/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile index a09d54d690..d278be8410 100644 --- a/src/lib/libssl/crypto/Makefile +++ b/src/lib/libssl/crypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.52 2010/02/03 20:49:00 miod Exp $ | 1 | # $OpenBSD: Makefile,v 1.53 2010/07/01 17:44:57 thib Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | WANTLINT= | 4 | WANTLINT= |
@@ -158,7 +158,7 @@ SRCS+= c_rle.c c_zlib.c comp_lib.c comp_err.c | |||
158 | SRCS+= p12_add.c p12_crpt.c p12_init.c p12_mutl.c p12_p8e.c | 158 | SRCS+= p12_add.c p12_crpt.c p12_init.c p12_mutl.c p12_p8e.c |
159 | SRCS+= p12_asn.c p12_crt.c p12_key.c p12_npas.c p12_utl.c | 159 | SRCS+= p12_asn.c p12_crt.c p12_key.c p12_npas.c p12_utl.c |
160 | SRCS+= p12_attr.c p12_decr.c p12_kiss.c p12_p8d.c pk12err.c | 160 | SRCS+= p12_attr.c p12_decr.c p12_kiss.c p12_p8d.c pk12err.c |
161 | SRCS+= eng_all.c eng_openssl.c eng_ctrl.c eng_pkey.c | 161 | SRCS+= eng_all.c eng_openssl.c eng_ctrl.c eng_pkey.c eng_aesni.c |
162 | SRCS+= eng_dyn.c eng_table.c tb_cipher.c tb_store.c eng_err.c tb_rsa.c | 162 | SRCS+= eng_dyn.c eng_table.c tb_cipher.c tb_store.c eng_err.c tb_rsa.c |
163 | SRCS+= tb_ecdh.c tb_ecdsa.c | 163 | SRCS+= tb_ecdh.c tb_ecdsa.c |
164 | SRCS+= hw_cryptodev.c eng_cnf.c | 164 | SRCS+= hw_cryptodev.c eng_cnf.c |
@@ -371,7 +371,8 @@ SSLASM=\ | |||
371 | bn x86_64-mont \ | 371 | bn x86_64-mont \ |
372 | md5 md5-x86_64 \ | 372 | md5 md5-x86_64 \ |
373 | rc4 rc4-x86_64 \ | 373 | rc4 rc4-x86_64 \ |
374 | sha sha1-x86_64 | 374 | sha sha1-x86_64 \ |
375 | aes aesni-x86_64 | ||
375 | .for dir f in ${SSLASM} | 376 | .for dir f in ${SSLASM} |
376 | SRCS+= ${f}.S | 377 | SRCS+= ${f}.S |
377 | GENERATED+=${f}.S | 378 | GENERATED+=${f}.S |