From d54b0b8d690c7a46048627758aba9e1389e61067 Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Sat, 17 Dec 2016 18:59:17 +0100 Subject: [PATCH] Do not include xchacha20poly1305 in minimal mode --- src/libsodium/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsodium/Makefile.am b/src/libsodium/Makefile.am index 7cec3ab0..ad7bf50c 100644 --- a/src/libsodium/Makefile.am +++ b/src/libsodium/Makefile.am @@ -3,7 +3,6 @@ lib_LTLIBRARIES = \ libsodium_la_SOURCES = \ crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c \ - crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \ crypto_auth/crypto_auth.c \ crypto_auth/hmacsha256/auth_hmacsha256_api.c \ crypto_auth/hmacsha256/cp/hmac_hmacsha256.c \ @@ -170,6 +169,7 @@ endif if !MINIMAL libsodium_la_SOURCES += \ + crypto_aead/xchacha20poly1305/sodium/aead_xchacha20poly1305.c \ crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_api.c \ crypto_box/curve25519xchacha20poly1305/box_curve25519xchacha20poly1305_easy.c \ crypto_box/curve25519xchacha20poly1305/sodium/after_curve25519xchacha20poly1305.c \