Skip to content

Commit 139d43b

Browse files
authored
Add configuration support for mbedTLS (project-chip#369)
* Add configuration support for mbedTLS * restyle-io
1 parent 7a8a93f commit 139d43b

File tree

1 file changed

+40
-0
lines changed

1 file changed

+40
-0
lines changed

configure.ac

+40
Original file line numberDiff line numberDiff line change
@@ -1354,6 +1354,36 @@ else
13541354
AC_DEFINE([CHIP_WITH_OPENSSL], [1], [Define to 1 to build CHIP with OpenSSL features])
13551355
fi
13561356

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+
13571387
#
13581388
# LwIP
13591389
#
@@ -1797,6 +1827,12 @@ CPPFLAGS="${CPPFLAGS} ${OPENSSL_CPPFLAGS}"
17971827
LDFLAGS="${LDFLAGS} ${OPENSSL_LDFLAGS}"
17981828
LIBS="${LIBS} ${OPENSSL_LIBS}"
17991829

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+
18001836
# Add any nlunit-test CPPFLAGS, LDFLAGS, and LIBS
18011837

18021838
CPPFLAGS="${CPPFLAGS} ${NLUNIT_TEST_CPPFLAGS}"
@@ -1974,6 +2010,10 @@ AC_MSG_NOTICE([
19742010
OpenSSL compile flags : ${OPENSSL_CPPFLAGS:--}
19752011
OpenSSL link flags : ${OPENSSL_LDFLAGS:--}
19762012
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:--}
19772017
Nlunit-test source : ${nl_with_nlunit_test:--}
19782018
Nlunit-test compile flags : ${NLUNIT_TEST_CPPFLAGS:--}
19792019
Nlunit-test link flags : ${NLUNIT_TEST_LDFLAGS:--}

0 commit comments

Comments
 (0)