diff options
| author | Eneas U de Queiroz | 2022-06-08 23:30:39 +0000 |
|---|---|---|
| committer | Christian 'Ansuel' Marangi | 2022-06-09 00:53:00 +0000 |
| commit | 3b90edaff954c99d3a84fec90561c1f7667ba2b3 (patch) | |
| tree | 954a5d16c19b5047f93d9d067e9a2b68d7914764 | |
| parent | fe9c4593b5469b08f9195d5ffe09783e2ea50689 (diff) | |
| download | openwrt-3b90edaff954c99d3a84fec90561c1f7667ba2b3.tar.gz | |
wolfssl: make WOLFSSL_HAS_OPENVPN default to y
Openvpn forces CONFIG_WOLFSSL_HAS_OPENVPN=y. When the phase1 bots build
the now non-shared package, openvpn will not be selected, and WolfSSL
will be built without it. Then phase2 bots have CONFIG_ALL=y, which
will select openvpn and force CONFIG_WOLFSSL_HAS_OPENVPN=y. This
changes the version hash, causing dependency failures, as shared
packages expect the phase2 hash.
Fixes: #9738
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
| -rw-r--r-- | package/libs/wolfssl/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/wolfssl/Config.in b/package/libs/wolfssl/Config.in index f495a90ff6..3d264e7743 100644 --- a/package/libs/wolfssl/Config.in +++ b/package/libs/wolfssl/Config.in @@ -53,7 +53,7 @@ config WOLFSSL_HAS_ECC25519 config WOLFSSL_HAS_OPENVPN bool "Include OpenVPN support" - default n + default y config WOLFSSL_ALT_NAMES bool "Include SAN (Subject Alternative Name) support" |