diff options
author | 2014-11-20 19:19:09 +0000 | |
---|---|---|
committer | 2014-11-20 19:19:09 +0000 | |
commit | 8da117248c2e727db8ded551d5b3be90034d66d7 (patch) | |
tree | 96b7b1d7b1d9c56f8c2cd58110146757be3c9d19 | |
parent | split crypt_checkpass off into a new file (diff) | |
download | wireguard-openbsd-8da117248c2e727db8ded551d5b3be90034d66d7.tar.xz wireguard-openbsd-8da117248c2e727db8ded551d5b3be90034d66d7.zip |
Oops, make sure camellia is compiled on platforms without an arch-specific
Makefile.inc (i.e. landisk and m88k)
-rw-r--r-- | lib/libcrypto/crypto/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libcrypto/crypto/Makefile b/lib/libcrypto/crypto/Makefile index 7895dbddd82..c6b7c6db462 100644 --- a/lib/libcrypto/crypto/Makefile +++ b/lib/libcrypto/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.49 2014/11/18 05:31:47 miod Exp $ +# $OpenBSD: Makefile,v 1.50 2014/11/20 19:19:09 miod Exp $ LIB= crypto @@ -436,6 +436,7 @@ CFLAGS+=-DOPENSSL_NO_ASM SRCS+= aes_core.c aes_cbc.c SRCS+= bf_enc.c SRCS+= bn_asm.c +SRCS+= camellia.c cmll_cbc.c cmll_misc.c SRCS+= des_enc.c fcrypt_b.c SRCS+= rc4_enc.c rc4_skey.c #SRCS+= rc5_enc.c |