Skip to content

Commit e692eec

Browse files
committed
Add responder to wolfclu options
1 parent 000cccf commit e692eec

1 file changed

Lines changed: 10 additions & 2 deletions

File tree

configure.ac

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7062,8 +7062,6 @@ AC_ARG_ENABLE([ocsp-responder],
70627062
70637063
if test "x$ENABLED_OCSP_RESPONDER" = "xyes"
70647064
then
7065-
AM_CFLAGS="$AM_CFLAGS -DHAVE_OCSP_RESPONDER"
7066-
70677065
# Requires OCSP make sure on
70687066
if test "x$ENABLED_OCSP" = "xno"
70697067
then
@@ -10348,6 +10346,13 @@ then
1034810346
1034910347
AM_CFLAGS="$AM_CFLAGS -DHAVE_OID_ENCODING -DWOLFSSL_NO_ASN_STRICT"
1035010348
10349+
# OCSP responder
10350+
if test "$ENABLED_OCSP" = "no"; then
10351+
ENABLED_OCSP="yes"
10352+
fi
10353+
if test "$ENABLED_OCSP_RESPONDER" = "no"; then
10354+
ENABLED_OCSP_RESPONDER="yes"
10355+
fi
1035110356
fi
1035210357
1035310358
if test "$ENABLED_STRONGSWAN" = "yes"; then
@@ -10602,6 +10607,9 @@ AS_IF([test "x$ENABLED_CERTEXT" = "xyes"],
1060210607
AS_IF([test "x$ENABLED_OCSP" = "xyes"],
1060310608
[AM_CFLAGS="$AM_CFLAGS -DHAVE_OCSP"])
1060410609
10610+
AS_IF([test "x$ENABLED_OCSP_RESPONDER" = "xyes"],
10611+
[AM_CFLAGS="$AM_CFLAGS -DHAVE_OCSP_RESPONDER"])
10612+
1060510613
if test "$ENABLED_OCSP" = "yes"
1060610614
then
1060710615
# check openssl command tool for testing ocsp

0 commit comments

Comments
 (0)