Skip to content

Commit

Permalink
Fixed linking error when using BoringSSL (fixes #3395)
Browse files Browse the repository at this point in the history
  • Loading branch information
lminiero committed Jun 13, 2024
1 parent 2a1db57 commit 7d65bd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ AS_IF([test "x${boringssl_dir}" != "x"],
CFLAGS="$CFLAGS -I${boringssl_dir}/include";
BORINGSSL_CFLAGS=" -I${boringssl_dir}/include";
AC_SUBST(BORINGSSL_CFLAGS)
BORINGSSL_LIBS=" -L${boringssl_dir}/lib";
BORINGSSL_LIBS=" -L${boringssl_dir}/lib -lstdc++";
AC_SUBST(BORINGSSL_LIBS)
AC_CHECK_HEADERS([${boringssl_dir}/include/openssl/opensslconf.h],
[AC_DEFINE(HAVE_BORINGSSL)],
Expand Down

0 comments on commit 7d65bd9

Please sign in to comment.