From 496f749f63044aabdd86f047076ec5d862eec1a0 Mon Sep 17 00:00:00 2001 From: Mahavir Jain Date: Wed, 4 Aug 2021 17:28:51 +0530 Subject: [PATCH] libsodium: fix source directory names to address build issues with Make --- components/libsodium/component.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/components/libsodium/component.mk b/components/libsodium/component.mk index 610c83cd2b..68e91cc5a8 100644 --- a/components/libsodium/component.mk +++ b/components/libsodium/component.mk @@ -16,7 +16,8 @@ COMPONENT_SRCDIRS += \ $(LSRC)/crypto_auth/hmacsha512256 \ $(LSRC)/crypto_box \ $(LSRC)/crypto_box/curve25519xsalsa20poly1305 \ - $(LSRC)/crypto_core/curve25519/ref10 \ + $(LSRC)/crypto_core/ed25519 \ + $(LSRC)/crypto_core/ed25519/ref10 \ $(LSRC)/crypto_core/hchacha20 \ $(LSRC)/crypto_core/hsalsa20/ref2 \ $(LSRC)/crypto_core/hsalsa20 \ @@ -40,6 +41,9 @@ COMPONENT_SRCDIRS += \ $(LSRC)/crypto_scalarmult \ $(LSRC)/crypto_scalarmult/curve25519 \ $(LSRC)/crypto_scalarmult/curve25519/ref10 \ + $(LSRC)/crypto_scalarmult/curve25519/sandy2x \ + $(LSRC)/crypto_scalarmult/ed25519/ref10 \ + $(LSRC)/crypto_scalarmult/ristretto255/ref10 \ $(LSRC)/crypto_secretbox \ $(LSRC)/crypto_secretbox/xsalsa20poly1305 \ $(LSRC)/crypto_shorthash \