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 05957a8 commit 1d4157aCopy full SHA for 1d4157a
configure.ac
@@ -1446,13 +1446,16 @@ if test "$use_external_signer" != "no"; then
1446
;;
1447
*)
1448
AC_MSG_CHECKING([whether Boost.Process can be used])
1449
+ TEMP_CPPFLAGS="$CPPFLAGS"
1450
+ CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS"
1451
TEMP_LDFLAGS="$LDFLAGS"
1452
dnl Boost 1.73 and older require the following workaround.
1453
LDFLAGS="$LDFLAGS $PTHREAD_CFLAGS"
1454
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <boost/process.hpp>]])],
1455
[have_boost_process="yes"],
1456
[have_boost_process="no"])
1457
LDFLAGS="$TEMP_LDFLAGS"
1458
+ CPPFLAGS="$TEMP_CPPFLAGS"
1459
AC_MSG_RESULT([$have_boost_process])
1460
if test "$have_boost_process" = "yes"; then
1461
use_external_signer="yes"
0 commit comments