Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 135fbd6

Browse files
committed
Merge branch 'bugfix/ssl_dependent' into 'refactor'
feat(ssl): Make current openssl wrap enabled when using mbedTLS See merge request sdk/ESP8266_RTOS_SDK!62
2 parents 5db18b0 + 067400c commit 135fbd6

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

components/ssl/component.mk

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
#
22
# Component Makefile
33
#
4+
5+
ifdef CONFIG_SSL_USING_MBEDTLS
46
COMPONENT_ADD_INCLUDEDIRS := openssl/include
57
COMPONENT_PRIV_INCLUDEDIRS := openssl/include/internal openssl/include/openssl openssl/include/platform
68

79
COMPONENT_SRCDIRS := openssl/source/library openssl/source/platform
810

9-
ifdef CONFIG_SSL_USING_MBEDTLS
1011
COMPONENT_ADD_INCLUDEDIRS += mbedtls/include
1112
COMPONENT_SRCDIRS += mbedtls/source/library mbedtls/source/platform
1213
else
13-
COMPONENT_ADD_INCLUDEDIRS += axtls/include
14-
COMPONENT_SRCDIRS += axtls/source/ssl axtls/source/crypto
14+
COMPONENT_ADD_INCLUDEDIRS := axtls/include
15+
COMPONENT_SRCDIRS := axtls/source/ssl axtls/source/crypto
1516
endif

0 commit comments

Comments
 (0)