Skip to content

Commit f44178c

Browse files
authored
Merge pull request #8973 from embhorn/zd20192
Fix curl config to set HAVE_EX_DATA and HAVE_ALPN
2 parents 08ec364 + 0d14ec3 commit f44178c

2 files changed

Lines changed: 8 additions & 0 deletions

File tree

CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,7 @@ if(WOLFSSL_CURL)
435435
set(WOLFSSL_MD4 "yes")
436436
set(WOLFSSL_DES3 "yes")
437437
set(WOLFSSL_ALPN "yes")
438+
set(WOLFSSL_EX_DATA "yes")
438439
set(WOLFSSL_WOLFSSH "yes")
439440
set(WOLFSSL_OPENSSLEXTRA "yes")
440441
set(WOLFSSL_CRL "yes")

configure.ac

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8090,6 +8090,13 @@ then
80908090
if test "x$ENABLED_ALPN" = "xno"
80918091
then
80928092
ENABLED_ALPN="yes"
8093+
AM_CFLAGS="$AM_CFLAGS -DHAVE_ALPN"
8094+
fi
8095+
8096+
if test "x$ENABLED_EX_DATA" = "xno"
8097+
then
8098+
ENABLED_EX_DATA="yes"
8099+
AM_CFLAGS="$AM_CFLAGS -DHAVE_EX_DATA"
80938100
fi
80948101
80958102
if test "x$ENABLED_WOLFSSH" = "xno"

0 commit comments

Comments
 (0)