summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGlenn Strauss <gstrauss@gluelogic.com>2020-12-05 02:30:15 -0500
committerGlenn Strauss <gstrauss@gluelogic.com>2020-12-05 02:30:15 -0500
commitce1d45ed82342088629a468da340aa34d38e5ff2 (patch)
treec5ea0be7b3b65af6003dd763a6ea3d840912dafb /SConstruct
parent3579c32295fc26ec1a37d5805c81b2ec1c54d5d5 (diff)
downloadlighttpd-git-ce1d45ed82342088629a468da340aa34d38e5ff2.tar.gz
[build] fix SCons build when building all TLS mods
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct13
1 files changed, 10 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index da4eae2f..553e1bf7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -339,6 +339,9 @@ if 1:
LIBLBER = '',
LIBLDAP = '',
LIBLUA = '',
+ LIBMBEDTLS = '',
+ LIBMBEDX509 = '',
+ LIBMBEDCRYPTO = '',
LIBMEMCACHED = '',
LIBMYSQL = '',
LIBNSS = '',
@@ -348,7 +351,9 @@ if 1:
LIBSASL = '',
LIBSQLITE3 = '',
LIBSSL = '',
+ LIBSSLCRYPTO = '',
LIBUUID = '',
+ LIBWOLFSSL = '',
LIBX509 = '',
LIBXML2 = '',
LIBXXHASH = '',
@@ -615,6 +620,7 @@ if 1:
autoconf.env.Append(
CPPFLAGS = [ '-DHAVE_OPENSSL_SSL_H', '-DHAVE_LIBSSL'],
LIBSSL = 'ssl',
+ LIBSSLCRYPTO = 'crypto',
LIBCRYPTO = 'crypto',
)
@@ -629,7 +635,7 @@ if 1:
fail("Couldn't find wolfssl")
autoconf.env.Append(
CPPFLAGS = [ '-DHAVE_WOLFSSL_SSL_H' ],
- LIBSSL = '',
+ LIBWOLFSSL= 'wolfssl',
LIBCRYPTO = 'wolfssl',
)
@@ -638,8 +644,9 @@ if 1:
fail("Couldn't find mbedtls")
autoconf.env.Append(
CPPFLAGS = [ '-DHAVE_LIBMBEDCRYPTO' ],
- LIBSSL = 'mbedtls',
- LIBX509 = 'mbedx509',
+ LIBMBEDTLS = 'mbedtls',
+ LIBMBEDX509 = 'mbedx509',
+ LIBMBEDCRYPTO = 'mbedcrypto',
LIBCRYPTO = 'mbedcrypto',
)