@@ -1354,6 +1354,36 @@ else
1354
1354
AC_DEFINE ( [ CHIP_WITH_OPENSSL] , [ 1] , [ Define to 1 to build CHIP with OpenSSL features] )
1355
1355
fi
1356
1356
1357
+ #
1358
+ #
1359
+ # mbedTLS
1360
+ #
1361
+
1362
+ NL_WITH_OPTIONAL_EXTERNAL_PACKAGE([ mbedTLS] ,
1363
+ [ MBEDTLS] ,
1364
+ [ mbedtls] ,
1365
+ [ -lmbedtls] ,
1366
+ [
1367
+ # Check for required mbedTLS headers.
1368
+
1369
+ AC_CHECK_HEADERS ( [ mbedtls/sha1.h] [ mbedtls/sha256.h] [ mbedtls/sha512.h] [ mbedtls/md.h] [ mbedtls/hkdf.h] [ mbedtls/pkcs5.h] [ mbedtls/chachapoly.h] [ mbedtls/aes.h] [ mbedtls/ecdh.h] [ mbedtls/bignum.h] ,
1370
+
1371
+ [ ] ,
1372
+ [
1373
+ AC_MSG_ERROR ( The mbedTLS header "$ac_header" is required but cannot be found. )
1374
+ ]
1375
+ )
1376
+ ]
1377
+ )
1378
+
1379
+ AM_CONDITIONAL([ CHIP_WITH_MBEDTLS] , [ test "${nl_with_mbedtls}" != "no"] )
1380
+
1381
+ if test "${nl_with_mbedtls}" = "no"; then
1382
+ AC_DEFINE ( [ CHIP_WITH_MBEDTLS] , [ 0] , [ Define to 1 to build CHIP with mbedTLS features] )
1383
+ else
1384
+ AC_DEFINE ( [ CHIP_WITH_MBEDTLS] , [ 1] , [ Define to 1 to build CHIP with mbedTLS features] )
1385
+ fi
1386
+
1357
1387
#
1358
1388
# LwIP
1359
1389
#
@@ -1797,6 +1827,12 @@ CPPFLAGS="${CPPFLAGS} ${OPENSSL_CPPFLAGS}"
1797
1827
LDFLAGS="${LDFLAGS} ${OPENSSL_LDFLAGS}"
1798
1828
LIBS="${LIBS} ${OPENSSL_LIBS}"
1799
1829
1830
+ # Add any mbedTLS CPPFLAGS, LDFLAGS, and LIBS
1831
+
1832
+ CPPFLAGS="${CPPFLAGS} ${MBEDTLS_CPPFLAGS}"
1833
+ LDFLAGS="${LDFLAGS} ${MBEDTLS_LDFLAGS}"
1834
+ LIBS="${LIBS} ${MBEDTLS_LIBS}"
1835
+
1800
1836
# Add any nlunit-test CPPFLAGS, LDFLAGS, and LIBS
1801
1837
1802
1838
CPPFLAGS="${CPPFLAGS} ${NLUNIT_TEST_CPPFLAGS}"
@@ -1974,6 +2010,10 @@ AC_MSG_NOTICE([
1974
2010
OpenSSL compile flags : ${OPENSSL_CPPFLAGS:--}
1975
2011
OpenSSL link flags : ${OPENSSL_LDFLAGS:--}
1976
2012
OpenSSL link libraries : ${OPENSSL_LIBS:--}
2013
+ mbedTLS source : ${nl_with_mbedtls}
2014
+ mbedTLS compile flags : ${MBEDTLS_CPPFLAGS:--}
2015
+ mbedTLS link flags : ${MBEDTLS_LDFLAGS:--}
2016
+ mbedTLS link libraries : ${MBEDTLS_LIBS:--}
1977
2017
Nlunit-test source : ${nl_with_nlunit_test:--}
1978
2018
Nlunit-test compile flags : ${NLUNIT_TEST_CPPFLAGS:--}
1979
2019
Nlunit-test link flags : ${NLUNIT_TEST_LDFLAGS:--}
0 commit comments