We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2199ef7 commit 6997885Copy full SHA for 6997885
configure.ac
@@ -1438,9 +1438,13 @@ if test "$use_external_signer" != "no"; then
1438
;;
1439
*)
1440
AC_MSG_CHECKING([whether Boost.Process can be used])
1441
+ TEMP_LDFLAGS="$LDFLAGS"
1442
+ dnl Boost 1.73 and older require the following workaround.
1443
+ LDFLAGS="$LDFLAGS $PTHREAD_CFLAGS"
1444
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <boost/process.hpp>]])],
1445
[have_boost_process="yes"],
1446
[have_boost_process="no"])
1447
+ LDFLAGS="$TEMP_LDFLAGS"
1448
AC_MSG_RESULT([$have_boost_process])
1449
if test "$have_boost_process" = "yes"; then
1450
use_external_signer="yes"
0 commit comments